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

Windows CE

开发平台:

C/C++

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