|
|
1.1 ! paf 1: #ifndef GETOPT_H ! 2: #define GETOPT_H ! 3: ! 4: extern char *optarg; ! 5: extern int optind; ! 6: extern int opterr; ! 7: extern int optopt; ! 8: int getopt(int argc, char* const *argv, const char *optstr); ! 9: ! 10: #endif /* GETOPT_H */