123456789101112131415161718192021 |
- #ifndef _GETOPT_H
- #define _GETOPT_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- extern char* optarg;
- extern int opterr;
- extern int optind;
- extern int optopt;
- int getopt(int argc, char *const *argv, const char *optstring);
- #ifdef __cplusplus
- }
- #endif
- #endif
|