LMMS
Loading...
Searching...
No Matches
getopt_windows.h
Go to the documentation of this file.
1#ifndef GETOPT_H
2#define GETOPT_H
3
4extern int opterr; /* if error message should be printed */
5extern int optind; /* index into parent argv vector */
6extern int optopt; /* character checked for validity */
7extern int optreset; /* reset getopt */
8extern char *optarg; /* argument associated with option */
9
10int getopt(int nargc, char * const nargv[], const char *ostr);
11
12#endif
int optopt
Definition getopt_windows.cpp:41
int optreset
Definition getopt_windows.cpp:42
int optind
Definition getopt_windows.cpp:40
char * optarg
Definition getopt_windows.cpp:43
int opterr
Definition getopt_windows.cpp:39
int getopt()