10 lines
148 B
C
10 lines
148 B
C
#ifndef GETOPT_H
|
|
#define GETOPT_H
|
|
|
|
extern char *optarg;
|
|
extern int optind;
|
|
|
|
int getopt(int nargc, char * const nargv[], const char *ostr) ;
|
|
|
|
#endif
|