123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #ifndef _GETOPT_LONG_H_
- #define _GETOPT_LONG_H_
- #define no_argument 0
- #define required_argument 1
- #define optional_argument 2
- struct option {
-
- const char *name;
-
- int has_arg;
-
- int *flag;
-
- int val;
- };
- int getopt_long(int, char * const *, const char *,
- const struct option *, int *);
- int getopt_long_only(int, char * const *, const char *,
- const struct option *, int *);
- extern char *optarg;
- extern int optind, opterr, optopt;
- #endif
|