getopt.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* Declarations for getopt.
  2.    Copyright (C) 1989-1994, 1996-1999, 2001 Free Software Foundation, Inc.
  3.    This file is part of the GNU C Library.
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2, or (at your option)
  7.    any later version.
  8.    This program 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
  11.    GNU General Public License for more details.
  12.    You should have received a copy of the GNU General Public License
  13.    along with this program; if not, write to the Free Software Foundation,
  14.    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307, USA.  */
  15. #ifndef _GETOPT_H
  16. #ifndef __need_getopt
  17. # define _GETOPT_H 1
  18. #endif
  19. /* If __GNU_LIBRARY__ is not already defined, either we are being used
  20.    standalone, or this is the first header included in the source file.
  21.    If we are being used with glibc, we need to include <features.h>, but
  22.    that does not exist if we are standalone.  So: if __GNU_LIBRARY__ is
  23.    not defined, include <ctype.h>, which will pull in <features.h> for us
  24.    if it's from glibc.  (Why ctype.h?  It's guaranteed to exist and it
  25.    doesn't flood the namespace with stuff the way some other headers do.)  */
  26. #if !defined __GNU_LIBRARY__
  27. # include <ctype.h>
  28. #endif
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. /* For communication from `getopt' to the caller.
  33.    When `getopt' finds an option that takes an argument,
  34.    the argument value is returned here.
  35.    Also, when `ordering' is RETURN_IN_ORDER,
  36.    each non-option ARGV-element is returned here.  */
  37. extern char *optarg;
  38. /* Index in ARGV of the next element to be scanned.
  39.    This is used for communication to and from the caller
  40.    and for communication between successive calls to `getopt'.
  41.    On entry to `getopt', zero means this is the first call; initialize.
  42.    When `getopt' returns -1, this is the index of the first of the
  43.    non-option elements that the caller should itself scan.
  44.    Otherwise, `optind' communicates from one call to the next
  45.    how much of ARGV has been scanned so far.  */
  46. extern int optind;
  47. /* Callers store zero here to inhibit the error message `getopt' prints
  48.    for unrecognized options.  */
  49. extern int opterr;
  50. /* Set to an option character which was unrecognized.  */
  51. extern int optopt;
  52. #ifndef __need_getopt
  53. /* Describe the long-named options requested by the application.
  54.    The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
  55.    of `struct option' terminated by an element containing a name which is
  56.    zero.
  57.    The field `has_arg' is:
  58.    no_argument (or 0) if the option does not take an argument,
  59.    required_argument (or 1) if the option requires an argument,
  60.    optional_argument  (or 2) if the option takes an optional argument.
  61.    If the field `flag' is not NULL, it points to a variable that is set
  62.    to the value given in the field `val' when the option is found, but
  63.    left unchanged if the option is not found.
  64.    To have a long-named option do something other than set an `int' to
  65.    a compiled-in constant, such as set a value from `optarg', set the
  66.    option's `flag' field to zero and its `val' field to a nonzero
  67.    value (the equivalent single-letter option character, if there is
  68.    one).  For long options that have a zero `flag' field, `getopt'
  69.    returns the contents of the `val' field.  */
  70. struct option
  71. {
  72. # if (defined __STDC__ && __STDC__) || defined __cplusplus
  73.   const char *name;
  74. # else
  75.   char *name;
  76. # endif
  77.   /* has_arg can't be an enum because some compilers complain about
  78.      type mismatches in all the code that assumes it is an int.  */
  79.   int has_arg;
  80.   int *flag;
  81.   int val;
  82. };
  83. /* Names for the values of the `has_arg' field of `struct option'.  */
  84. # define no_argument 0
  85. # define required_argument 1
  86. # define optional_argument 2
  87. #endif /* need getopt */
  88. /* Get definitions and prototypes for functions to process the
  89.    arguments in ARGV (ARGC of them, minus the program name) for
  90.    options given in OPTS.
  91.    Return the option character from OPTS just read.  Return -1 when
  92.    there are no more options.  For unrecognized options, or options
  93.    missing arguments, `optopt' is set to the option letter, and '?' is
  94.    returned.
  95.    The OPTS string is a list of characters which are recognized option
  96.    letters, optionally followed by colons, specifying that that letter
  97.    takes an argument, to be placed in `optarg'.
  98.    If a letter in OPTS is followed by two colons, its argument is
  99.    optional.  This behavior is specific to the GNU `getopt'.
  100.    The argument `--' causes premature termination of argument
  101.    scanning, explicitly telling `getopt' that there are no more
  102.    options.
  103.    If OPTS begins with `--', then non-option arguments are treated as
  104.    arguments to the option ''.  This behavior is specific to the GNU
  105.    `getopt'.  */
  106. #if (defined __STDC__ && __STDC__) || defined __cplusplus
  107. # ifdef __GNU_LIBRARY__
  108. /* Many other libraries have conflicting prototypes for getopt, with
  109.    differences in the consts, in stdlib.h.  To avoid compilation
  110.    errors, only prototype getopt for the GNU C library.  */
  111. extern int getopt (int __argc, char *const *__argv, const char *__shortopts);
  112. # else /* not __GNU_LIBRARY__ */
  113. extern int getopt ();
  114. # endif /* __GNU_LIBRARY__ */
  115. # ifndef __need_getopt
  116. extern int getopt_long (int __argc, char *const *__argv, const char *__shortopts,
  117.         const struct option *__longopts, int *__longind);
  118. extern int getopt_long_only (int __argc, char *const *__argv,
  119.      const char *__shortopts,
  120.              const struct option *__longopts, int *__longind);
  121. /* Internal only.  Users should not call this directly.  */
  122. extern int _getopt_internal (int __argc, char *const *__argv,
  123.      const char *__shortopts,
  124.              const struct option *__longopts, int *__longind,
  125.      int __long_only);
  126. # endif
  127. #else /* not __STDC__ */
  128. extern int getopt ();
  129. # ifndef __need_getopt
  130. extern int getopt_long ();
  131. extern int getopt_long_only ();
  132. extern int _getopt_internal ();
  133. # endif
  134. #endif /* __STDC__ */
  135. #ifdef __cplusplus
  136. }
  137. #endif
  138. /* Make sure we later can get all the definitions and declarations.  */
  139. #undef __need_getopt
  140. #endif /* getopt.h */