/* Win32 getopt */ #ifndef __GETOPT_HEADER_ #define __GETOPT_HEADER_ #define _next_char(string) (char)(*(string+1)) extern char *optarg; extern int optind; extern int opterr; extern int getopt(int, char**, char*); #endif //