You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef GETOPT_H
|
|
#define GETOPT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int optind;
|
|
extern char* optarg;
|
|
extern int optopt;
|
|
|
|
int getopt(int argc, char* const argv[], const char* ostr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // GETOPT_H
|