GINO Graphics Suite - GINO v9.0  

gEnqSysArgs

Syntax

[C/C++:]
void 
[F90:]
subroutine gEnqSysArgs(n, args)

integer, intent(inout) :: n
character*(*), intent(out) :: args(*)

Arguments

n
Size of args array on entry, number of elements filled on exit

args
Character array containing application name and any command line arguments

Description

The system utility gEnqSysArgs() is available to F90 programmers to enquire the application program name and any command line arguments entered when starting the program. The application name is returned in args(1) and arguments in args(2), args(3), etc.
C programmers should use the standard argc and argv parameters to main().

See Also

gEnqSysArgs Usage