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

Telnet服务器

开发平台:

Unix_Linux

  1. /* Getopt for GNU.
  2.    NOTE: getopt is now part of the C library, so if you don't know what
  3.    "Keep this file name-space clean" means, talk to roland@gnu.ai.mit.edu
  4.    before changing it!
  5.    Copyright (C) 1987, 88, 89, 90, 91, 92, 1993
  6.     Free Software Foundation, Inc.
  7.    This program is free software; you can redistribute it and/or modify it
  8.    under the terms of the GNU General Public License as published by the
  9.    Free Software Foundation; either version 2, or (at your option) any
  10.    later version.
  11.    This program is distributed in the hope that it will be useful,
  12.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.    GNU General Public License for more details.
  15.    You should have received a copy of the GNU General Public License
  16.    along with this program; if not, write to the Free Software
  17.    Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18. /* Modified for use with Nessus by <jordan@mjh.teddy-net.com>
  19.    $Id: getopt.c,v 1.10 2001/10/16 18:48:55 renaud Exp $ */
  20. /* NOTE!!!  AIX requires this to be the first thing in the file.
  21.    Do not put ANYTHING before it!  */
  22.       
  23. #if !defined (__GNUC__) && defined (_AIX)
  24. #pragma alloca
  25. #endif
  26. #include <includes.h>
  27. /***********************/
  28. #ifndef HAVE_GETOPT_LONG
  29. /***********************/
  30. #ifdef __GNUC__
  31. #define alloca __builtin_alloca
  32. #else /* not __GNUC__ */
  33. #if defined (HAVE_ALLOCA_H) || (defined(sparc) && (defined(sun) || (!defined(USG) && !defined(SVR4) && !defined(__svr4__))))
  34. #include <alloca.h>
  35. #else
  36. #ifndef _AIX
  37. char *alloca ();
  38. #endif
  39. #endif /* alloca.h */
  40. #endif /* not __GNUC__ */
  41. #if !__STDC__ && !defined(const) && IN_GCC
  42. #define const
  43. #endif
  44. /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.  */
  45. #ifndef _NO_PROTO
  46. #define _NO_PROTO
  47. #endif
  48. #include <stdio.h>
  49. /* Comment out all this code if we are using the GNU C Library, and are not
  50.    actually compiling the library itself.  This code is part of the GNU C
  51.    Library, but also included in many other GNU distributions.  Compiling
  52.    and linking in this code is a waste when using the GNU C library
  53.    (especially if it is a shared library).  Rather than having every GNU
  54.    program understand `configure --with-gnu-libc' and omit the object files,
  55.    it is simpler to just do this in the source for each such file.  */
  56. /************************************************/
  57. #if defined (_LIBC) || !defined (__GNU_LIBRARY__)
  58. #endif /* disabe #ifdef */
  59. /************************************************/
  60. #if 0 /* old stuff */
  61. /* This needs to come after some library #include
  62.    to get __GNU_LIBRARY__ defined.  */
  63. #ifdef __GNU_LIBRARY__
  64. #undef alloca
  65. /* Don't include stdlib.h for non-GNU C libraries because some of them
  66.    contain conflicting prototypes for getopt.  */
  67. #include <stdlib.h>
  68. #else /* Not GNU C library.  */
  69. #define __alloca alloca
  70. #endif /* GNU C library.  */
  71. #endif /* old stuff */
  72. #ifdef HAVE_ALLOCA
  73. #define __alloca alloca
  74. #endif
  75. #ifdef HAVE__ALLOCA
  76. #define __alloca _alloca
  77. #endif
  78. #ifndef __alloca
  79. #error alloca() is needed to compile this source
  80. #endif
  81. #if !defined (__STDC__) && !defined (const)
  82. #  define const
  83. #endif
  84. /* If GETOPT_COMPAT is defined, `+' as well as `--' can introduce a
  85.    long-named option.  Because this is not POSIX.2 compliant, it is
  86.    being phased out.  */
  87. /* #define GETOPT_COMPAT */
  88. /* This version of `getopt' appears to the caller like standard Unix `getopt'
  89.    but it behaves differently for the user, since it allows the user
  90.    to intersperse the options with the other arguments.
  91.    As `getopt' works, it permutes the elements of ARGV so that,
  92.    when it is done, all the options precede everything else.  Thus
  93.    all application programs are extended to handle flexible argument order.
  94.    Setting the environment variable POSIXLY_CORRECT disables permutation.
  95.    Then the behavior is completely standard.
  96.    GNU application programs can use a third alternative mode in which
  97.    they can distinguish the relative order of options and other arguments.  */
  98. #include "getopt.h"
  99. #undef optarg
  100. #undef opterr
  101. #undef optopt
  102. #undef optind
  103. /* For communication from `getopt' to the caller.
  104.    When `getopt' finds an option that takes an argument,
  105.    the argument value is returned here.
  106.    Also, when `ordering' is RETURN_IN_ORDER,
  107.    each non-option ARGV-element is returned here.  */
  108. #ifdef HAVE_OPTIND
  109. extern char* optarg;
  110. #else
  111. char *optarg = 0;
  112. #endif
  113. /* Index in ARGV of the next element to be scanned.
  114.    This is used for communication to and from the caller
  115.    and for communication between successive calls to `getopt'.
  116.    On entry to `getopt', zero means this is the first call; initialize.
  117.    When `getopt' returns EOF, this is the index of the first of the
  118.    non-option elements that the caller should itself scan.
  119.    Otherwise, `optind' communicates from one call to the next
  120.    how much of ARGV has been scanned so far.  */
  121. /* XXX 1003.2 says this must be 1 before any call.  */
  122. #ifdef HAVE_OPTIND
  123. extern int optind;
  124. #else
  125. int optind = 0;
  126. #endif
  127. /* The next char to be scanned in the option-element
  128.    in which the last option character we returned was found.
  129.    This allows us to pick up the scan where we left off.
  130.    If this is zero, or a null string, it means resume the scan
  131.    by advancing to the next ARGV-element.  */
  132. static char *nextchar;
  133. /* Callers store zero here to inhibit the error message
  134.    for unrecognized options.  */
  135. #ifdef HAVE_OPTIND
  136. extern int opterr;
  137. #else
  138. int opterr = 1;
  139. #endif
  140. /* Set to an option character which was unrecognized.
  141.    This must be initialized on some systems to avoid linking in the
  142.    system's own getopt implementation.  */
  143. #ifdef HAVE_OPTIND
  144. extern int optint;
  145. #else
  146. int optopt = '?';
  147. #endif
  148. /* Describe how to deal with options that follow non-option ARGV-elements.
  149.    If the caller did not specify anything,
  150.    the default is REQUIRE_ORDER if the environment variable
  151.    POSIXLY_CORRECT is defined, PERMUTE otherwise.
  152.    REQUIRE_ORDER means don't recognize them as options;
  153.    stop option processing when the first non-option is seen.
  154.    This is what Unix does.
  155.    This mode of operation is selected by either setting the environment
  156.    variable POSIXLY_CORRECT, or using `+' as the first character
  157.    of the list of option characters.
  158.    PERMUTE is the default.  We permute the contents of ARGV as we scan,
  159.    so that eventually all the non-options are at the end.  This allows options
  160.    to be given in any order, even with programs that were not written to
  161.    expect this.
  162.    RETURN_IN_ORDER is an option available to programs that were written
  163.    to expect options and other ARGV-elements in any order and that care about
  164.    the ordering of the two.  We describe each non-option ARGV-element
  165.    as if it were the argument of an option with character code 1.
  166.    Using `-' as the first character of the list of option characters
  167.    selects this mode of operation.
  168.    The special argument `--' forces an end of option-scanning regardless
  169.    of the value of `ordering'.  In the case of RETURN_IN_ORDER, only
  170.    `--' can cause `getopt' to return EOF with `optind' != ARGC.  */
  171. static enum
  172. {
  173.   REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
  174. } ordering, default_ordering = PERMUTE;
  175. #ifdef __GNU_LIBRARY__
  176. /* We want to avoid inclusion of string.h with non-GNU libraries
  177.    because there are many ways it can cause trouble.
  178.    On some systems, it contains special magic macros that don't work
  179.    in GCC.  */
  180. #include <string.h>
  181. #define my_index strchr
  182. #define my_bcopy(src, dst, n) memcpy ((dst), (src), (n))
  183. #else
  184. /* Avoid depending on library functions or files
  185.    whose names are inconsistent.  */
  186. char *getenv ();
  187. static char *
  188. my_index (str, chr)
  189.      const char *str;
  190.      int chr;
  191. {
  192.   while (*str)
  193.     {
  194.       if (*str == chr)
  195. return (char *) str;
  196.       str++;
  197.     }
  198.   return 0;
  199. }
  200. static void
  201. my_bcopy (from, to, size)
  202.      const char *from;
  203.      char *to;
  204.      int size;
  205. {
  206.   int i;
  207.   for (i = 0; i < size; i++)
  208.     to[i] = from[i];
  209. }
  210. #endif /* GNU C library.  */
  211. /* Handle permutation of arguments.  */
  212. /* Describe the part of ARGV that contains non-options that have
  213.    been skipped.  `first_nonopt' is the index in ARGV of the first of them;
  214.    `last_nonopt' is the index after the last of them.  */
  215. static int first_nonopt;
  216. static int last_nonopt;
  217. /* Exchange two adjacent subsequences of ARGV.
  218.    One subsequence is elements [first_nonopt,last_nonopt)
  219.    which contains all the non-options that have been skipped so far.
  220.    The other is elements [last_nonopt,optind), which contains all
  221.    the options processed since those non-options were skipped.
  222.    `first_nonopt' and `last_nonopt' are relocated so that they describe
  223.    the new indices of the non-options in ARGV after they are moved.  */
  224. static void
  225. exchange (argv)
  226.      char **argv;
  227. {
  228.   int nonopts_size = (last_nonopt - first_nonopt) * sizeof (char *);
  229.   char **temp = (char **) __alloca (nonopts_size);
  230.   /* Interchange the two blocks of data in ARGV.  */
  231.   my_bcopy ((char *) &argv[first_nonopt], (char *) temp, nonopts_size);
  232.   my_bcopy ((char *) &argv[last_nonopt], (char *) &argv[first_nonopt],
  233.     (optind - last_nonopt) * sizeof (char *));
  234.   my_bcopy ((char *) temp,
  235.     (char *) &argv[first_nonopt + optind - last_nonopt],
  236.     nonopts_size);
  237.   /* Update records for the slots the non-options now occupy.  */
  238.   first_nonopt += (optind - last_nonopt);
  239.   last_nonopt = optind;
  240. }
  241. /* Scan elements of ARGV (whose length is ARGC) for option characters
  242.    given in OPTSTRING.
  243.    If an element of ARGV starts with '-', and is not exactly "-" or "--",
  244.    then it is an option element.  The characters of this element
  245.    (aside from the initial '-') are option characters.  If `getopt'
  246.    is called repeatedly, it returns successively each of the option characters
  247.    from each of the option elements.
  248.    If `getopt' finds another option character, it returns that character,
  249.    updating `optind' and `nextchar' so that the next call to `getopt' can
  250.    resume the scan with the following option character or ARGV-element.
  251.    If there are no more option characters, `getopt' returns `EOF'.
  252.    Then `optind' is the index in ARGV of the first ARGV-element
  253.    that is not an option.  (The ARGV-elements have been permuted
  254.    so that those that are not options now come last.)
  255.    OPTSTRING is a string containing the legitimate option characters.
  256.    If an option character is seen that is not listed in OPTSTRING,
  257.    return '?' after printing an error message.  If you set `opterr' to
  258.    zero, the error message is suppressed but we still return '?'.
  259.    If a char in OPTSTRING is followed by a colon, that means it wants an arg,
  260.    so the following text in the same ARGV-element, or the text of the following
  261.    ARGV-element, is returned in `optarg'.  Two colons mean an option that
  262.    wants an optional arg; if there is text in the current ARGV-element,
  263.    it is returned in `optarg', otherwise `optarg' is set to zero.
  264.    If OPTSTRING starts with `-' or `+', it requests different methods of
  265.    handling the non-option ARGV-elements.
  266.    See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
  267.    Long-named options begin with `--' instead of `-'.
  268.    Their names may be abbreviated as long as the abbreviation is unique
  269.    or is an exact match for some defined option.  If they have an
  270.    argument, it follows the option name in the same ARGV-element, separated
  271.    from the option name by a `=', or else the in next ARGV-element.
  272.    When `getopt' finds a long-named option, it returns 0 if that option's
  273.    `flag' field is nonzero, the value of the option's `val' field
  274.    if the `flag' field is zero.
  275.    The elements of ARGV aren't really const, because we permute them.
  276.    But we pretend they're const in the prototype to be compatible
  277.    with other systems.
  278.    LONGOPTS is a vector of `struct option' terminated by an
  279.    element containing a name which is zero.
  280.    LONGIND returns the index in LONGOPT of the long-named option found.
  281.    It is only valid when a long-named option has been found by the most
  282.    recent call.
  283.    If LONG_ONLY is nonzero, '-' as well as '--' can introduce
  284.    long-named options.  */
  285. /* Call this function with an argument of 1 to set the default option
  286.    ordering to that required by Posix.  The normal default is PERMUTE. */
  287. void
  288. getopt_set_posix_option_order (on_or_off)
  289.      int on_or_off;
  290. {
  291.   if (on_or_off == 1)
  292.     default_ordering = REQUIRE_ORDER;
  293.   else
  294.     default_ordering = PERMUTE;
  295. }
  296. int
  297. _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
  298.      int argc;
  299.      char *const *argv;
  300.      const char *optstring;
  301.      const struct option *longopts;
  302.      int *longind;
  303.      int long_only;
  304. {
  305.   int option_index;
  306.   optarg = 0;
  307.   if (optind > argc || optind < 0)
  308.     {
  309.       optind = argc;
  310.       return (EOF);
  311.     }
  312.   /* Initialize the internal data when the first call is made.
  313.      Start processing options with ARGV-element 1 (since ARGV-element 0
  314.      is the program name); the sequence of previously skipped
  315.      non-option ARGV-elements is empty.  */
  316.   if (optind == 0)
  317.     {
  318.       first_nonopt = last_nonopt = optind = 1;
  319.       nextchar = NULL;
  320.       /* Determine how to handle the ordering of options and nonoptions.  */
  321.       if (optstring[0] == '-')
  322. {
  323.   ordering = RETURN_IN_ORDER;
  324.   ++optstring;
  325. }
  326.       else if (optstring[0] == '+')
  327. {
  328.   ordering = REQUIRE_ORDER;
  329.   ++optstring;
  330. }
  331.       else if (getenv ("POSIXLY_CORRECT") != NULL)
  332. ordering = REQUIRE_ORDER;
  333.       else
  334. ordering = default_ordering;
  335.     }
  336.   if (nextchar == NULL || *nextchar == '')
  337.     {
  338.       if (ordering == PERMUTE)
  339. {
  340.   /* If we have just processed some options following some non-options,
  341.      exchange them so that the options come first.  */
  342.   if (first_nonopt != last_nonopt && last_nonopt != optind)
  343.     exchange ((char **) argv);
  344.   else if (last_nonopt != optind)
  345.     first_nonopt = optind;
  346.   /* Now skip any additional non-options
  347.      and extend the range of non-options previously skipped.  */
  348.   while (optind < argc
  349.  && (argv[optind][0] != '-' || argv[optind][1] == '')
  350. #ifdef GETOPT_COMPAT
  351.  && (longopts == NULL
  352.      || argv[optind][0] != '+' || argv[optind][1] == '')
  353. #endif /* GETOPT_COMPAT */
  354.  )
  355.     optind++;
  356.   last_nonopt = optind;
  357. }
  358.       /* Special ARGV-element `--' means premature end of options.
  359.  Skip it like a null option,
  360.  then exchange with previous non-options as if it were an option,
  361.  then skip everything else like a non-option.  */
  362.       if (optind != argc && !strcmp (argv[optind], "--"))
  363. {
  364.   optind++;
  365.   if (first_nonopt != last_nonopt && last_nonopt != optind)
  366.     exchange ((char **) argv);
  367.   else if (first_nonopt == last_nonopt)
  368.     first_nonopt = optind;
  369.   last_nonopt = argc;
  370.   optind = argc;
  371. }
  372.       /* If we have done all the ARGV-elements, stop the scan
  373.  and back over any non-options that we skipped and permuted.  */
  374.       if (optind == argc)
  375. {
  376.   /* Set the next-arg-index to point at the non-options
  377.      that we previously skipped, so the caller will digest them.  */
  378.   if (first_nonopt != last_nonopt)
  379.     optind = first_nonopt;
  380.   return EOF;
  381. }
  382.       /* If we have come to a non-option and did not permute it,
  383.  either stop the scan or describe it to the caller and pass it by.  */
  384.       if ((argv[optind][0] != '-' || argv[optind][1] == '')
  385. #ifdef GETOPT_COMPAT
  386.   && (longopts == NULL
  387.       || argv[optind][0] != '+' || argv[optind][1] == '')
  388. #endif /* GETOPT_COMPAT */
  389.   )
  390. {
  391.   if (ordering == REQUIRE_ORDER)
  392.     return EOF;
  393.   optarg = argv[optind++];
  394.   return 1;
  395. }
  396.       /* We have found another option-ARGV-element.
  397.  Start decoding its characters.  */
  398.       nextchar = (argv[optind] + 1
  399.   + (longopts != NULL && argv[optind][1] == '-'));
  400.     }
  401.   if (longopts != NULL
  402.       && ((argv[optind][0] == '-'
  403.    && (argv[optind][1] == '-' || long_only))
  404. #ifdef GETOPT_COMPAT
  405.   || argv[optind][0] == '+'
  406. #endif /* GETOPT_COMPAT */
  407.   ))
  408.     {
  409.       const struct option *p;
  410.       char *s = nextchar;
  411.       int exact = 0;
  412.       int ambig = 0;
  413.       const struct option *pfound = NULL;
  414.       int indfound;
  415.       while (*s && *s != '=')
  416. s++;
  417.       /* Test all options for either exact match or abbreviated matches.  */
  418.       for (p = longopts, option_index = 0; p->name;
  419.    p++, option_index++)
  420. if (!strncmp (p->name, nextchar, s - nextchar))
  421.   {
  422.     if (s - nextchar == strlen (p->name))
  423.       {
  424. /* Exact match found.  */
  425. pfound = p;
  426. indfound = option_index;
  427. exact = 1;
  428. break;
  429.       }
  430.     else if (pfound == NULL)
  431.       {
  432. /* First nonexact match found.  */
  433. pfound = p;
  434. indfound = option_index;
  435.       }
  436.     else
  437.       /* Second nonexact match found.  */
  438.       ambig = 1;
  439.   }
  440.       if (ambig && !exact)
  441. {
  442.   if (opterr)
  443.     fprintf (stderr, "%s: option `%s' is ambiguousn",
  444.      argv[0], argv[optind]);
  445.   nextchar += strlen (nextchar);
  446.   optind++;
  447.   return '?';
  448. }
  449.       if (pfound != NULL)
  450. {
  451.   option_index = indfound;
  452.   optind++;
  453.   if (*s)
  454.     {
  455.       /* Don't test has_arg with >, because some C compilers don't
  456.  allow it to be used on enums.  */
  457.       if (pfound->has_arg)
  458. optarg = s + 1;
  459.       else
  460. {
  461.   if (opterr)
  462.     {
  463.       if (argv[optind - 1][1] == '-')
  464. /* --option */
  465. fprintf (stderr,
  466.  "%s: option `--%s' doesn't allow an argumentn",
  467.  argv[0], pfound->name);
  468.       else
  469. /* +option or -option */
  470. fprintf (stderr,
  471.      "%s: option `%c%s' doesn't allow an argumentn",
  472.      argv[0], argv[optind - 1][0], pfound->name);
  473.     }
  474.   nextchar += strlen (nextchar);
  475.   return '?';
  476. }
  477.     }
  478.   else if (pfound->has_arg == 1)
  479.     {
  480.       if (optind < argc)
  481. optarg = argv[optind++];
  482.       else
  483. {
  484.   if (opterr)
  485.     fprintf (stderr, "%s: option `%s' requires an argumentn",
  486.      argv[0], argv[optind - 1]);
  487.   nextchar += strlen (nextchar);
  488.   return optstring[0] == ':' ? ':' : '?';
  489. }
  490.     }
  491.   nextchar += strlen (nextchar);
  492.   if (longind != NULL)
  493.     *longind = option_index;
  494.   if (pfound->flag)
  495.     {
  496.       *(pfound->flag) = pfound->val;
  497.       return 0;
  498.     }
  499.   return pfound->val;
  500. }
  501.       /* Can't find it as a long option.  If this is not getopt_long_only,
  502.  or the option starts with '--' or is not a valid short
  503.  option, then it's an error.
  504.  Otherwise interpret it as a short option.  */
  505.       if (!long_only || argv[optind][1] == '-'
  506. #ifdef GETOPT_COMPAT
  507.   || argv[optind][0] == '+'
  508. #endif /* GETOPT_COMPAT */
  509.   || my_index (optstring, *nextchar) == NULL)
  510. {
  511.   if (opterr)
  512.     {
  513.       if (argv[optind][1] == '-')
  514. /* --option */
  515. fprintf (stderr, "%s: unrecognized option `--%s'n",
  516.  argv[0], nextchar);
  517.       else
  518. /* +option or -option */
  519. fprintf (stderr, "%s: unrecognized option `%c%s'n",
  520.  argv[0], argv[optind][0], nextchar);
  521.     }
  522.   nextchar = (char *) "";
  523.   optind++;
  524.   return '?';
  525. }
  526.     }
  527.   /* Look at and handle the next option-character.  */
  528.   {
  529.     char c = *nextchar++;
  530.     char *temp = my_index (optstring, c);
  531.     /* Increment `optind' when we start to process its last character.  */
  532.     if (*nextchar == '')
  533.       ++optind;
  534.     optopt = c;
  535.     if (temp == NULL || c == ':')
  536.       {
  537. if (opterr)
  538.   {
  539. #if 0
  540.     if (c < 040 || c >= 0177)
  541.       fprintf (stderr, "%s: unrecognized option, character code 0%on",
  542.        argv[0], c);
  543.     else
  544.       fprintf (stderr, "%s: unrecognized option `-%c'n", argv[0], c);
  545. #else
  546.     /* 1003.2 specifies the format of this message.  */
  547.     fprintf (stderr, "%s: illegal option -- %cn", argv[0], c);
  548. #endif
  549.   }
  550. optopt = c;
  551. return '?';
  552.       }
  553.     if (temp[1] == ':')
  554.       {
  555. if (temp[2] == ':')
  556.   {
  557.     /* This is an option that accepts an argument optionally.  */
  558.     if (*nextchar != '')
  559.       {
  560. optarg = nextchar;
  561. optind++;
  562.       }
  563.     else
  564.       optarg = 0;
  565.     nextchar = NULL;
  566.   }
  567. else
  568.   {
  569.     /* This is an option that requires an argument.  */
  570.     if (*nextchar != '')
  571.       {
  572. optarg = nextchar;
  573. /* If we end this ARGV-element by taking the rest as an arg,
  574.    we must advance to the next element now.  */
  575. optind++;
  576.       }
  577.     else if (optind == argc)
  578.       {
  579. if (opterr)
  580.   {
  581. #if 0
  582.     fprintf (stderr, "%s: option `-%c' requires an argumentn",
  583.      argv[0], c);
  584. #else
  585.     /* 1003.2 specifies the format of this message.  */
  586.     fprintf (stderr, "%s: option requires an argument -- %cn",
  587.      argv[0], c);
  588. #endif
  589.   }
  590. optopt = c;
  591. if (optstring[0] == ':')
  592.   c = ':';
  593. else
  594.   c = '?';
  595.       }
  596.     else
  597.       /* We already incremented `optind' once;
  598.  increment it again when taking next ARGV-elt as argument.  */
  599.       optarg = argv[optind++];
  600.     nextchar = NULL;
  601.   }
  602.       }
  603.     return c;
  604.   }
  605. }
  606. /************************************/
  607. #ifdef _WIN32 /* not used by Nessus */
  608. /************************************/
  609. int
  610. getopt (argc, argv, optstring)
  611.      int argc;
  612.      char *const *argv;
  613.      const char *optstring;
  614. {
  615.   return _getopt_internal (argc, argv, optstring,
  616.    (const struct option *) 0,
  617.    (int *) 0,
  618.    0);
  619. }
  620. /******************************************/
  621. #endif              /* not used by Nessus */
  622. #if 0                /* annihilate #endif */
  623. #endif /* _LIBC or not __GNU_LIBRARY__.  */
  624. /******************************************/
  625. #ifdef TEST
  626. /* Compile with -DTEST to make an executable for use in testing
  627.    the above definition of `getopt'.  */
  628. int
  629. main (argc, argv)
  630.      int argc;
  631.      char **argv;
  632. {
  633.   int c;
  634.   int digit_optind = 0;
  635.   while (1)
  636.     {
  637.       int this_option_optind = optind ? optind : 1;
  638.       c = getopt (argc, argv, "abc:d:0123456789");
  639.       if (c == EOF)
  640. break;
  641.       switch (c)
  642. {
  643. case '0':
  644. case '1':
  645. case '2':
  646. case '3':
  647. case '4':
  648. case '5':
  649. case '6':
  650. case '7':
  651. case '8':
  652. case '9':
  653.   if (digit_optind != 0 && digit_optind != this_option_optind)
  654.     printf ("digits occur in two different argv-elements.n");
  655.   digit_optind = this_option_optind;
  656.   printf ("option %cn", c);
  657.   break;
  658. case 'a':
  659.   printf ("option an");
  660.   break;
  661. case 'b':
  662.   printf ("option bn");
  663.   break;
  664. case 'c':
  665.   printf ("option c with value `%s'n", optarg);
  666.   break;
  667. case '?':
  668.   break;
  669. default:
  670.   printf ("?? getopt returned character code 0%o ??n", c);
  671. }
  672.     }
  673.   if (optind < argc)
  674.     {
  675.       printf ("non-option ARGV-elements: ");
  676.       while (optind < argc)
  677. printf ("%s ", argv[optind++]);
  678.       printf ("n");
  679.     }
  680.   exit (0);
  681. }
  682. #endif /* TEST */
  683. /***************************/
  684. #endif /* HAVE_GETOPT_LONG */
  685. /***************************/