blob: cc04850a22c4cc112e8f3c68d6391341b1486813 [file] [log] [blame]
#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