getopt.h 247 B

12345678910111213
  1. #ifndef _GETOPT_H
  2. #define _GETOPT_H
  3. // Generated from:
  4. // `grep "opt" target/include/unistd.h`
  5. extern char* optarg;
  6. extern int opterr;
  7. extern int optind;
  8. extern int optopt;
  9. int getopt(int argc, char *const *argv, const char *optstring);
  10. #endif