2011-09-01 13:24:08 +02:00
|
|
|
/* last review : october 29th, 2002 */
|
|
|
|
|
|
|
|
#ifndef _GETOPT_H_
|
|
|
|
#define _GETOPT_H_
|
|
|
|
|
2017-05-15 12:21:30 +02:00
|
|
|
typedef struct opj_option {
|
|
|
|
const char *name;
|
|
|
|
int has_arg;
|
|
|
|
int *flag;
|
|
|
|
int val;
|
|
|
|
} opj_option_t;
|
2011-09-01 13:24:08 +02:00
|
|
|
|
2017-05-15 12:21:30 +02:00
|
|
|
#define NO_ARG 0
|
|
|
|
#define REQ_ARG 1
|
|
|
|
#define OPT_ARG 2
|
2011-09-01 13:24:08 +02:00
|
|
|
|
|
|
|
extern int opj_opterr;
|
|
|
|
extern int opj_optind;
|
|
|
|
extern int opj_optopt;
|
|
|
|
extern int opj_optreset;
|
|
|
|
extern char *opj_optarg;
|
|
|
|
|
|
|
|
extern int opj_getopt(int nargc, char *const *nargv, const char *ostr);
|
|
|
|
extern int opj_getopt_long(int argc, char * const argv[], const char *optstring,
|
2017-05-15 12:21:30 +02:00
|
|
|
const opj_option_t *longopts, int totlen);
|
2014-11-22 01:04:39 +01:00
|
|
|
extern void opj_reset_options_reading(void);
|
2011-09-01 13:24:08 +02:00
|
|
|
|
2017-05-15 12:21:30 +02:00
|
|
|
#endif /* _GETOPT_H_ */
|