mfcuk added to utils cmakelist modified acr122_usb.C et pn53x_usb.c modified to remove errors when compiling on Visual Studio 2022 on Windows
14 lines
384 B
C
14 lines
384 B
C
#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);
|
|
|
|
#endif
|