setargcv - save main arguments.

SYNOPSIS

int setargcv (int argc, char **argv);

DESCRIPTION

This function saves C main arguments in global variables. They are accessed by the Dictionary system. Setargcv must be executed before these systems are accessed. Most systems do NOT provide automatic linkage to this information.

EXAMPLE

main(int argc, char **argv) { setargcv(argc, argv); ... }

AUTHOR

R. L. Selzler, EPTG (July 1998)