ReactOS 0.4.15-dev-7958-gcd0bb1a
getopt.h
Go to the documentation of this file.
1/* getopt.h */
2
3extern const char *optarg;
4extern int optind;
5
6int
7getopt(int nargc, char * const *nargv, const char *ostr);
int getopt(int nargc, char *const *nargv, const char *ostr)
Definition: getopt.c:55
const char * optarg
Definition: getopt.c:49
int optind
Definition: getopt.c:47