gw-getopt.h
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. /*
  2.  * gwlib/getopt.h - define a prototype for the getopt function
  3.  *
  4.  * Some systems have a <getopt.h> which defines the getopt stuff. On
  5.  * those systems, we include that. On other systems, we provide our own
  6.  * definitions.
  7.  */
  8. #ifndef GWLIB_GETOPT_H
  9. #define GWLIB_GETOPT_H
  10. #if HAVE_GETOPT_H
  11.     #include <getopt.h>
  12. #elif HAVE_GETOPT_IN_STDIO_H
  13.     #include <stdio.h>
  14. #elif HAVE_GETOPT_IN_UNISTD_H
  15.     #include <unistd.h>
  16. #else
  17.     int getopt(int argc, char **argv, char *opts);
  18.     extern int opterr;
  19.     extern int optind;
  20.     extern int optopt;
  21.     extern char *optarg;
  22. #endif
  23. #endif