Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygengetopt.h
Go to the documentation of this file.
00001 00002 #ifndef GETOPT_H 00003 #define GETOPT_H 00004 00005 #ifdef __cplusplus 00006 extern "C" { 00007 #endif 00008 00009 extern int opterr; /* useless, never set or used */ 00010 extern int optind; /* index into parent argv vector */ 00011 extern int optopt; /* character checked for validity */ 00012 extern char* optarg; /* argument associated with option */ 00013 00014 int getopt(int argc, char * const *argv, const char *optstring); 00015 00016 #ifdef __cplusplus 00017 } /* end of extern "C" */ 00018 #endif 00019 00020 #endif /* GETOPT_H */ 00021 Generated on Thu May 24 2012 04:17:25 for ReactOS by
1.7.6.1
|