]> Creatis software - gdcm.git/blob - getopt.h
c2b4dddef913730a31eb3235a8f5a5e9f538a148
[gdcm.git] / getopt.h
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_ */