12345678910111213 |
- #ifndef _GETOPT_H
- #define _GETOPT_H
- // Generated from:
- // `grep "opt" target/include/unistd.h`
- extern char* optarg;
- extern int opterr;
- extern int optind;
- extern int optopt;
- int getopt(int argc, char *const *argv, const char *optstring);
- #endif
|