blob: cc04850a22c4cc112e8f3c68d6391341b1486813 [file] [log] [blame]
Lingfeng Yang30fce142020-10-27 14:58:21 -07001#ifndef GETOPT_H
2#define GETOPT_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8extern int optind;
9extern char* optarg;
10extern int optopt;
11
12int getopt(int argc, char* const argv[], const char* ostr);
13
14#ifdef __cplusplus
15}
16#endif
17
18#endif // GETOPT_H