Go to the documentation of this file.00001
00016 #ifndef _LOCAL_GETOPT_H
00017 #define _LOCAL_GETOPT_H
00018
00019 extern int Opterr;
00020 extern int Optind;
00021 extern int Optopt;
00022 extern char *Optarg;
00023
00024 int Getopt(int argc, char *argv[], char *opts);
00025
00026 #endif