Files
openjpeg/jpwl/decoder/jpwldec/compat/getopt.h
Giuseppe Baruffa cff5df73d9 Initial revision
2005-11-08 17:40:33 +00:00

15 lines
275 B
C

/* last review : october 29th, 2002 */
#ifndef _GETOPT_H_
#define _GETOPT_H_
extern int opterr;
extern int optind;
extern int optopt;
extern int optreset;
extern char *optarg;
extern int getopt(int nargc, char *const *nargv, const char *ostr);
#endif /* _GETOPT_H_ */