123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef GETOPT_H
- #define GETOPT_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #define opterr PAL_opterr
- #define optind PAL_optind
- #define optopt PAL_optopt
- #define optreset PAL_optreset
- #define optarg PAL_optarg
- #define getopt PAL_getopt
- extern int opterr;
- extern int optind;
- extern int optopt;
- extern int optreset;
- extern char *optarg;
- int
- getopt(
- int nargc,
- char * const *nargv,
- const char *ostr
- );
- #ifdef __cplusplus
- }
- #endif
- #endif
|