getopt.h
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Declarations for getopt.
  2.    Copyright (C) 1989,90,91,92,93,94,96,97 Free Software Foundation, Inc.
  3.    This file is part of the GNU C Library.  Its master source is NOT part of
  4.    the C library, however.  The master source lives in /gd/gnu/lib.
  5.    The GNU C Library is free software; you can redistribute it and/or
  6.    modify it under the terms of the GNU Library General Public License as
  7.    published by the Free Software Foundation; either version 2 of the
  8.    License, or (at your option) any later version.
  9.    The GNU C Library is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12.    Library General Public License for more details.
  13.    You should have received a copy of the GNU Library General Public
  14.    License along with the GNU C Library; see the file COPYING.LIB.  If not,
  15.    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16.    Boston, MA 02111-1307, USA.  */
  17. #ifndef _PVPGN_GETOPT_H_
  18. #define _PVPGN_GETOPT_H_ 1
  19. #include "common/setup_before.h"
  20. #ifdef HAVE_UNISTD_H
  21. # include <unistd.h>
  22. #endif
  23. #ifndef HAVE_GETOPT
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /* For communication from `getopt' to the caller.
  28.    When `getopt' finds an option that takes an argument,
  29.    the argument value is returned here.
  30.    Also, when `ordering' is RETURN_IN_ORDER,
  31.    each non-option ARGV-element is returned here.  */
  32. extern char *optarg;
  33. /* Index in ARGV of the next element to be scanned.
  34.    This is used for communication to and from the caller
  35.    and for communication between successive calls to `getopt'.
  36.    On entry to `getopt', zero means this is the first call; initialize.
  37.    When `getopt' returns -1, this is the index of the first of the
  38.    non-option elements that the caller should itself scan.
  39.    Otherwise, `optind' communicates from one call to the next
  40.    how much of ARGV has been scanned so far.  */
  41. extern int optind;
  42. /* Callers store zero here to inhibit the error message `getopt' prints
  43.    for unrecognized options.  */
  44. extern int opterr;
  45. /* Set to an option character which was unrecognized.  */
  46. extern int optopt;
  47. /* Describe the long-named options requested by the application.
  48.    The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
  49.    of `struct option' terminated by an element containing a name which is
  50.    zero.
  51.    The field `has_arg' is:
  52.    no_argument (or 0) if the option does not take an argument,
  53.    required_argument (or 1) if the option requires an argument,
  54.    optional_argument  (or 2) if the option takes an optional argument.
  55.    If the field `flag' is not NULL, it points to a variable that is set
  56.    to the value given in the field `val' when the option is found, but
  57.    left unchanged if the option is not found.
  58.    To have a long-named option do something other than set an `int' to
  59.    a compiled-in constant, such as set a value from `optarg', set the
  60.    option's `flag' field to zero and its `val' field to a nonzero
  61.    value (the equivalent single-letter option character, if there is
  62.    one).  For long options that have a zero `flag' field, `getopt'
  63.    returns the contents of the `val' field.  */
  64. struct option
  65. {
  66. #if defined (__STDC__) && __STDC__
  67.   const char *name;
  68. #else
  69.   char *name;
  70. #endif
  71.   /* has_arg can't be an enum because some compilers complain about
  72.      type mismatches in all the code that assumes it is an int.  */
  73.   int has_arg;
  74.   int *flag;
  75.   int val;
  76. };
  77. /* Names for the values of the `has_arg' field of `struct option'.  */
  78. #define no_argument 0
  79. #define required_argument 1
  80. #define optional_argument 2
  81. #ifdef WIN32
  82. #define extern
  83. #endif
  84. #if defined (__STDC__) && __STDC__
  85. #ifdef __GNU_LIBRARY__
  86. /* Many other libraries have conflicting prototypes for getopt, with
  87.    differences in the consts, in stdlib.h.  To avoid compilation
  88.    errors, only prototype getopt for the GNU C library.  */
  89. extern int getopt (int argc, char *const *argv, const char *shortopts);
  90. #else /* not __GNU_LIBRARY__ */
  91. extern int getopt ();
  92. #endif /* __GNU_LIBRARY__ */
  93. extern int getopt_long (int argc, char *const *argv, const char *shortopts,
  94.         const struct option *longopts, int *longind);
  95. extern int getopt_long_only (int argc, char *const *argv,
  96.      const char *shortopts,
  97.              const struct option *longopts, int *longind);
  98. /* Internal only.  Users should not call this directly.  */
  99. extern int _getopt_internal (int argc, char *const *argv,
  100.      const char *shortopts,
  101.              const struct option *longopts, int *longind,
  102.      int long_only);
  103. #else /* not __STDC__ */
  104. extern int getopt ();
  105. extern int getopt_long ();
  106. extern int getopt_long_only ();
  107. extern int _getopt_internal ();
  108. #endif /* __STDC__ */
  109. #ifdef WIN32
  110. #undef extern
  111. #endif
  112. #ifdef __cplusplus
  113. }
  114. #endif
  115. #endif /* !HAVE_GETOPT */
  116. #endif /* _PVPGN_GETOPT_H_ */