aboutsummaryrefslogtreecommitdiffstats
path: root/emulator/opengl/host/tools/emugen/getopt.h
blob: 5ad039c682ed3fcfd6f1001793f49e1ac683f1d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef GETOPT_H
#define GETOPT_H

#ifdef __cplusplus
extern "C" {
#endif

extern int optind;
extern const char* optarg;
extern int optopt;

int getopt(int argc, char* const argv[], const char* ostr);

#ifdef __cplusplus
}
#endif

#endif  // GETOPT_H