00001 // XGetopt.h 00002 // 00003 // Author: Hans Dietrich 00004 // hdietrich2@hotmail.com 00005 // 00006 // This software is released into the public domain. 00007 // You are free to use it in any way you like. 00008 // 00009 // This software is provided "as is" with no expressed 00010 // or implied warranty. I accept no liability for any 00011 // damage or loss of business that this software may cause. 00012 // 00014 00015 #ifndef XGETOPT_H 00016 #define XGETOPT_H 00017 00018 extern int optind, opterr; 00019 extern char *optarg; 00020 00021 int getopt(int argc, char* const* argv, char *optstring); 00022 00023 #endif //XGETOPT_H