00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef USP_GETOPT_H
00019 #define USP_GETOPT_H
00020
00021 #include <tchar.h>
00022
00023 extern int optind, opterr;
00024 extern TCHAR *optarg;
00025
00026 int getopt(int argc, TCHAR *argv[], TCHAR *optstring);
00027
00028 #endif //USP_GETOPT_H