1#ifndef MUPDF_FITZ_GETOPT_H 2#define MUPDF_FITZ_GETOPT_H 3 4/* 5 getopt: Simple functions/variables for use in tools. 6*/ 7extern int fz_getopt(int nargc, char * const *nargv, const char *ostr); 8extern int fz_optind; 9extern char *fz_optarg; 10 11#endif 12 13