Based on the original Rocket Workbench on SourceForge in CVS at: https://sourceforge.net/projects/rocketworkbench
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
408 B

/* getopt.h from Don Libes "Obfuscated C" (extended by PRW) */
#ifndef GETOPT_H
#define GETOPT_H
extern int getopt(int argc, char **argv, char *opts);
extern char *optarg; /* current argv string */
extern int optind; /* current argv index */
extern int optopt; /* option character */
extern int opterr; /* getopt prints errors if 1 */
#endif /* GETOPT_H */