home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 21 / CD_ASCQ_21_040595.iso / dos / prg / c / freedos3 / source / jh_utils / getopt.c < prev    next >
C/C++ Source or Header  |  1995-01-07  |  22KB  |  764 lines

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