getopt.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:0k
源码类别:

Symbian

开发平台:

C/C++

  1. #ifndef _GETOPT_
  2. #define _GETOPT_
  3. int getopt(int argc, char **argv, char *optstring);
  4. extern char *optarg; // returned arg to go with this option
  5. extern int optind; // index to next argv element to process
  6. extern int opterr; // should error messages be printed?
  7. extern int optopt; //
  8. #define BADCH ('?')
  9. #endif // _GETOPT