getopt.h
上传用户:pycemail
上传日期:2007-01-04
资源大小:329k
文件大小:4k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

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