getopt.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:7k
源码类别:

Windows CE

开发平台:

C/C++

  1. /*
  2. NOTE:
  3. I cannot get the vanilla getopt code to work (i.e. compile only what
  4. is needed and not duplicate symbols found in the standard library)
  5. on all the platforms that FLAC supports.  In particular the gating
  6. of code with the ELIDE_CODE #define is not accurate enough on systems
  7. that are POSIX but not glibc.  If someone has a patch that works on
  8. GNU/Linux, Darwin, AND Solaris please submit it on the project page:
  9. http://sourceforge.net/projects/flac
  10. In the meantime I have munged the global symbols and remove gates
  11. around code, while at the same time trying to touch the original as
  12. little as possible.
  13. */
  14. /* Declarations for getopt.
  15.    Copyright (C) 1989,90,91,92,93,94,96,97,98 Free Software Foundation, Inc.
  16.    This file is part of the GNU C Library.
  17.    The GNU C Library is free software; you can redistribute it and/or
  18.    modify it under the terms of the GNU Library General Public License as
  19.    published by the Free Software Foundation; either version 2 of the
  20.    License, or (at your option) any later version.
  21.    The GNU C Library is distributed in the hope that it will be useful,
  22.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  24.    Library General Public License for more details.
  25.    You should have received a copy of the GNU Library General Public
  26.    License along with the GNU C Library; see the file COPYING.LIB.  If not,
  27.    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  28.    Boston, MA 02111-1307, USA.  */
  29. #ifndef SHARE__GETOPT_H
  30. #define SHARE__GETOPT_H
  31. /*[JEC] was:#ifndef __need_getopt*/
  32. /*[JEC] was:# define _GETOPT_H 1*/
  33. /*[JEC] was:#endif*/
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif
  37. /* For communication from `share__getopt' to the caller.
  38.    When `share__getopt' finds an option that takes an argument,
  39.    the argument value is returned here.
  40.    Also, when `ordering' is RETURN_IN_ORDER,
  41.    each non-option ARGV-element is returned here.  */
  42. extern char *share__optarg;
  43. /* Index in ARGV of the next element to be scanned.
  44.    This is used for communication to and from the caller
  45.    and for communication between successive calls to `share__getopt'.
  46.    On entry to `share__getopt', zero means this is the first call; initialize.
  47.    When `share__getopt' returns -1, this is the index of the first of the
  48.    non-option elements that the caller should itself scan.
  49.    Otherwise, `share__optind' communicates from one call to the next
  50.    how much of ARGV has been scanned so far.  */
  51. extern int share__optind;
  52. /* Callers store zero here to inhibit the error message `share__getopt' prints
  53.    for unrecognized options.  */
  54. extern int share__opterr;
  55. /* Set to an option character which was unrecognized.  */
  56. extern int share__optopt;
  57. /*[JEC] was:#ifndef __need_getopt */
  58. /* Describe the long-named options requested by the application.
  59.    The LONG_OPTIONS argument to share__getopt_long or share__getopt_long_only is a vector
  60.    of `struct share__option' terminated by an element containing a name which is
  61.    zero.
  62.    The field `has_arg' is:
  63.    share__no_argument (or 0) if the option does not take an argument,
  64.    share__required_argument (or 1) if the option requires an argument,
  65.    share__optional_argument  (or 2) if the option takes an optional argument.
  66.    If the field `flag' is not NULL, it points to a variable that is set
  67.    to the value given in the field `val' when the option is found, but
  68.    left unchanged if the option is not found.
  69.    To have a long-named option do something other than set an `int' to
  70.    a compiled-in constant, such as set a value from `share__optarg', set the
  71.    option's `flag' field to zero and its `val' field to a nonzero
  72.    value (the equivalent single-letter option character, if there is
  73.    one).  For long options that have a zero `flag' field, `share__getopt'
  74.    returns the contents of the `val' field.  */
  75. struct share__option
  76. {
  77. # if defined __STDC__ && __STDC__
  78.   const char *name;
  79. # else
  80.   char *name;
  81. # endif
  82.   /* has_arg can't be an enum because some compilers complain about
  83.      type mismatches in all the code that assumes it is an int.  */
  84.   int has_arg;
  85.   int *flag;
  86.   int val;
  87. };
  88. /* Names for the values of the `has_arg' field of `struct share__option'.  */
  89. # define share__no_argument 0
  90. # define share__required_argument 1
  91. # define share__optional_argument 2
  92. /*[JEC] was:#endif*/ /* need getopt */
  93. /* Get definitions and prototypes for functions to process the
  94.    arguments in ARGV (ARGC of them, minus the program name) for
  95.    options given in OPTS.
  96.    Return the option character from OPTS just read.  Return -1 when
  97.    there are no more options.  For unrecognized options, or options
  98.    missing arguments, `share__optopt' is set to the option letter, and '?' is
  99.    returned.
  100.    The OPTS string is a list of characters which are recognized option
  101.    letters, optionally followed by colons, specifying that that letter
  102.    takes an argument, to be placed in `share__optarg'.
  103.    If a letter in OPTS is followed by two colons, its argument is
  104.    optional.  This behavior is specific to the GNU `share__getopt'.
  105.    The argument `--' causes premature termination of argument
  106.    scanning, explicitly telling `share__getopt' that there are no more
  107.    options.
  108.    If OPTS begins with `--', then non-option arguments are treated as
  109.    arguments to the option ''.  This behavior is specific to the GNU
  110.    `share__getopt'.  */
  111. /*[JEC] was:#if defined __STDC__ && __STDC__*/
  112. /*[JEC] was:# ifdef __GNU_LIBRARY__*/
  113. /* Many other libraries have conflicting prototypes for getopt, with
  114.    differences in the consts, in stdlib.h.  To avoid compilation
  115.    errors, only prototype getopt for the GNU C library.  */
  116. extern int share__getopt (int argc, char *const *argv, const char *shortopts);
  117. /*[JEC] was:# else*/ /* not __GNU_LIBRARY__ */
  118. /*[JEC] was:extern int getopt ();*/
  119. /*[JEC] was:# endif*/ /* __GNU_LIBRARY__ */
  120. /*[JEC] was:# ifndef __need_getopt*/
  121. extern int share__getopt_long (int argc, char *const *argv, const char *shortopts,
  122.         const struct share__option *longopts, int *longind);
  123. extern int share__getopt_long_only (int argc, char *const *argv,
  124.      const char *shortopts,
  125.              const struct share__option *longopts, int *longind);
  126. /* Internal only.  Users should not call this directly.  */
  127. extern int share___getopt_internal (int argc, char *const *argv,
  128.      const char *shortopts,
  129.              const struct share__option *longopts, int *longind,
  130.      int long_only);
  131. /*[JEC] was:# endif*/
  132. /*[JEC] was:#else*/ /* not __STDC__ */
  133. /*[JEC] was:extern int getopt ();*/
  134. /*[JEC] was:# ifndef __need_getopt*/
  135. /*[JEC] was:extern int getopt_long ();*/
  136. /*[JEC] was:extern int getopt_long_only ();*/
  137. /*[JEC] was:extern int _getopt_internal ();*/
  138. /*[JEC] was:# endif*/
  139. /*[JEC] was:#endif*/ /* __STDC__ */
  140. #ifdef __cplusplus
  141. }
  142. #endif
  143. /* Make sure we later can get all the definitions and declarations.  */
  144. /*[JEC] was:#undef __need_getopt*/
  145. #endif /* getopt.h */