00001 00002 #ifndef GETOPT_WIN32_H 00003 #define GETOPT_WIN32_H 00004 00005 #ifdef __cplusplus 00006 extern "C" 00007 { 00008 #endif 00009 00010 extern int optind; 00011 extern char *optarg; 00012 extern int optopt; 00013 00014 int getopt (int argc, char *const argv[], char *optstring); 00015 00016 #ifdef __cplusplus 00017 } 00018 #endif 00019 00020 #endif /* GETOPT_WIN32_H */