12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #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
|