getopt.h 207 B

123456789
  1. #ifndef GETOPT_H
  2. #define GETOPT_H
  3. int getopt(int argc, char * const argv[], const char *optstring);
  4. extern char *optarg;
  5. extern int optind, opterr, optopt;
  6. #include <getopt_long.h>
  7. #endif /* GETOPT_H */