1 /* last review : october 29th, 2002 */
2 
3 #ifndef _GETOPT_H_
4 #define _GETOPT_H_
5 
6 extern int opterr;
7 extern int optind;
8 extern int optopt;
9 extern int optreset;
10 extern char *optarg;
11 
12 extern int getopt(int nargc, char *const *nargv, const char *ostr);
13 
14 #endif              /* _GETOPT_H_ */
15