gtpc2m75 | C/C++ Language Support User's Guide |
This function is used for the dynamic determination of system generation options at execution time, thereby allowing the code to become object-shippable.
Format
#include <c$systc.h> int systc(int option, enum t_systc_ss subsystem);
Normal Return
Error Return
Not applicable.
Programming Considerations
None.
Examples
The following example checks the shared DASD feature. If this feature has been generated, an ECB is dispatched for program CELH, passing the string ACT as input to the program.
#include <c$systc.h> char *parmstring = "ACT"
·
·
·
if (systc(SBSDPS,SYSTC_BSS)) cremc(strlen(parmstring),parmstring,CELH);
·
·
·
Related Information