getopt.h
上传用户:tjescc
上传日期:2021-02-23
资源大小:419k
文件大小:5k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. /* Declarations for getopt.
  2.    Copyright (C) 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  3.    This program is free software; you can redistribute it and/or modify it
  4.    under the terms of the GNU General Public License as published by the
  5.    Free Software Foundation; either version 2, or (at your option) any
  6.    later version.
  7.    This program is distributed in the hope that it will be useful,
  8.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.    GNU General Public License for more details.
  11.    You should have received a copy of the GNU General Public License
  12.    along with this program; if not, write to the Free Software
  13.    Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  14. /* Modified for use with Nessus by <jordan@mjh.teddy-net.com>
  15.    $Id: getopt.h,v 1.8 2001/10/15 17:57:50 renaud Exp $ */
  16. #ifndef _GETOPT_H
  17. #define _GETOPT_H 1
  18. #ifdef _CYGWIN_
  19. #undef _WIN32
  20. #endif
  21. #ifdef _WIN32
  22. #define APPLY_OPTVAR_REPLACEMENTS 1
  23. #endif
  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 EOF, 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 __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. #if __STDC__
  82. #if 0 /* we do not use getopt, here with nessus */
  83. #if defined(__GNU_LIBRARY__)
  84. /* Many other libraries have conflicting prototypes for getopt, with
  85.    differences in the consts, in stdlib.h.  To avoid compilation
  86.    errors, only prototype getopt for the GNU C library.  */
  87. extern int getopt (int argc, char *const *argv, const char *shortopts);
  88. #else /* not __GNU_LIBRARY__ */
  89. extern int getopt ();
  90. #endif /* not __GNU_LIBRARY__ */
  91. #endif /* we do not use getopt, here with nessus */
  92. #ifdef APPLY_OPTVAR_REPLACEMENTS
  93. extern char *get_optarg (void);
  94. extern int get_opterr (void);
  95. extern int get_optind (void);
  96. extern int get_optopt (void);
  97. extern int inc_optind (void);
  98. #endif /* APPLY_OPTVAR_REPLACEMENTS */
  99. extern int getopt_long (int argc, char *const *argv, const char *shortopts,
  100.         const struct option *longopts, int *longind);
  101. extern int getopt_long_only (int argc, char *const *argv,
  102.      const char *shortopts,
  103.              const struct option *longopts, int *longind);
  104. /* Internal only.  Users should not call this directly.  */
  105. extern int _getopt_internal (int argc, char *const *argv,
  106.      const char *shortopts,
  107.              const struct option *longopts, int *longind,
  108.      int long_only);
  109. #else /* not __STDC__ */
  110. #ifdef APPLY_OPTVAR_REPLACEMENTS
  111. extern char *get_optarg ();
  112. extern int get_opterr ();
  113. extern int get_optind ();
  114. extern int get_optopt ();
  115. extern int inc_optind ();
  116. #endif /* APPLY_OPTVAR_REPLACEMENTS */
  117. extern int getopt ();
  118. extern int getopt_long ();
  119. extern int getopt_long_only ();
  120. extern int _getopt_internal ();
  121. #endif /* not __STDC__ */
  122. #ifdef APPLY_OPTVAR_REPLACEMENTS
  123. #define optind get_optind ()
  124. #define optarg get_optarg ()
  125. #define opterr get_opterr ()
  126. #define optopt get_optopt ()
  127. #else /* APPLY_OPTVAR_REPLACEMENTS */
  128. #define inc_optind() (optind ++)
  129. #define get_optind() (optind)
  130. #define get_optarg() (optarg)
  131. #define get_opterr() (opterr)
  132. #define get_optopt() (optopt)
  133. #endif /* APPLY_OPTVAR_REPLACEMENTS */
  134. #ifdef __cplusplus
  135. }
  136. #endif
  137. #endif /* _GETOPT_H */