libnfc/contrib/win32/getopt.h

14 lines
384 B
C
Raw Permalink Normal View History

2018-03-17 19:06:38 +01:00
#ifndef GETOPT_H
#define GETOPT_H
extern int opterr; /* if error message should be printed */
extern int optind; /* index into parent argv vector */
extern int optopt; /* character checked for validity */
extern int optreset; /* reset getopt */
extern char *optarg; /* argument associated with option */
int getopt(int nargc, char * const nargv[], const char *ostr);
2020-07-08 13:06:03 +02:00
#endif