Source code of Windows XP (NT5)
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.

13 lines
330 B

  1. #ifndef _GETOPT_
  2. #define _GETOPT_
  3. int getopt(int argc, char **argv, char *optstring);
  4. extern char *optarg; // returned arg to go with this option
  5. extern int optind; // index to next argv element to process
  6. extern int opterr; // should error messages be printed?
  7. extern int optopt; //
  8. #define BADCH ('?')
  9. #endif // _GETOPT