1 /* getopt.h */
2 
3 extern const char *optarg;
4 extern int optind;
5 
6 int
7 getopt(int nargc, char * const *nargv, const char *ostr);
8