first commit
This commit is contained in:
20
include/mupdf/fitz/getopt.h
Normal file
20
include/mupdf/fitz/getopt.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef MUPDF_FITZ_GETOPT_H
|
||||
#define MUPDF_FITZ_GETOPT_H
|
||||
|
||||
/*
|
||||
getopt: Simple functions/variables for use in tools.
|
||||
*/
|
||||
extern int fz_getopt(int nargc, char * const *nargv, const char *ostr);
|
||||
extern int fz_optind;
|
||||
extern char *fz_optarg;
|
||||
|
||||
/*
|
||||
Windows unicode versions.
|
||||
*/
|
||||
#ifdef _WIN32
|
||||
extern int fz_getoptw(int nargc, wchar_t * const *nargv, const wchar_t *ostr);
|
||||
extern int fz_optindw;
|
||||
extern wchar_t *fz_optargw;
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user