mirror of
https://github.com/reactos/reactos.git
synced 2024-11-06 22:52:46 +00:00
8 lines
119 B
C
8 lines
119 B
C
|
/* getopt.h */
|
||
|
|
||
|
extern char *optarg;
|
||
|
extern int optind;
|
||
|
|
||
|
int
|
||
|
getopt(int nargc, char * const *nargv, const char *ostr);
|