Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
7858 views
1
#ifndef MUPDF_FITZ_GETOPT_H
2
#define MUPDF_FITZ_GETOPT_H
3
4
/*
5
getopt: Simple functions/variables for use in tools.
6
*/
7
extern int fz_getopt(int nargc, char * const *nargv, const char *ostr);
8
extern int fz_optind;
9
extern char *fz_optarg;
10
11
#endif
12
13