z/OS ISPF Software Configuration and Library Manager Guide and Reference
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


FORTRAN example

z/OS ISPF Software Configuration and Library Manager Guide and Reference
SC19-3625-00

For functions written in FORTRAN, pass arguments as FORTRAN variables or literals.

INTEGER      LASTRC*4
CHARACTER    SERVIS*8,SCLM_ID*8,GROUP*8
DATA         SERVIS/'DELETE  '/
DATA         SCLM_ID/'SCLM0001'/
DATA         GROUP/'USER1   '/
             ⋮

LASTRC=FLMLNK(SERVIS,SCLM_ID,GROUP,...)
For FORTRAN service requests, initialize parameter variables by using literals in assignment statements. You must use previously defined constants in assignment statements.
CHARACTER    DELET*8,SERVIS*8
DATA         DELET/'DELETE  '/
   ⋮

SERVIS=DELET

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014