9 lines
No EOL
162 B
C
9 lines
No EOL
162 B
C
#ifndef GETOPT_H
|
|
#define GETOPT_H
|
|
|
|
extern char *optarg;
|
|
extern int opterr, optind, optopt;
|
|
|
|
int getopt(int nargc, char * const nargv[], const char *ostr);
|
|
|
|
#endif |