1 /*
2  * Public Domain getopt header
3  *
4  */
5 
6 #ifndef FLICKCURL_GETOPT_H
7 #define FLICKCURL_GETOPT_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 int getopt(int argc, char * const argv[], const char *optstring);
14 extern char *optarg;
15 extern int optind, opterr, optopt;
16 
17 #ifdef __cplusplus
18 }
19 #endif
20 
21 #endif
22