z/OS ISPF Services Guide
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


C Examples

z/OS ISPF Services Guide
SC19-3626-00

#include <stdio.h>
#include <string.h>
#pragma linkage (isplink, OS)
#define SERVICE "'LMOPEN '"
#define OPTION "'INPUT '"
main ()
{
extern int isplink();

int retcode;

char8 DATAID;

⋮

strcpy (DATAID,  "DATA    ");
retcode = isplink (SERVICE, DATAID, OPTION);
}
 

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014