r11859: Canonicalize whitespace
[ctsim.git] / getopt / getopt.c
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 drepper@gnu.org
4    before changing it!
5
6    Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 2000
7         Free Software Foundation, Inc.
8
9    The GNU C Library is free software; you can redistribute it and/or
10    modify it under the terms of the GNU Library General Public License as
11    published by the Free Software Foundation; either version 2 of the
12    License, or (at your option) any later version.
13
14    The GNU C Library is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17    Library General Public License for more details.
18
19    You should have received a copy of the GNU Library General Public
20    License along with the GNU C Library; see the file COPYING.LIB.  If not,
21    write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22    Boston, MA 02111-1307, USA.  */
23 \f
24 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
25    Ditto for AIX 3.2 and <stdlib.h>.  */
26 #ifndef _NO_PROTO
27 # define _NO_PROTO
28 #endif
29
30 #ifdef HAVE_CONFIG_H
31 //# include <config.h>
32 #endif
33
34 #if !defined __STDC__ || !__STDC__
35 /* This is a separate conditional since some stdc systems
36    reject `defined (const)'.  */
37 # ifndef const
38 #  define const
39 # endif
40 #endif
41
42 #include <stdio.h>
43
44 /* Comment out all this code if we are using the GNU C Library, and are not
45    actually compiling the library itself.  This code is part of the GNU C
46    Library, but also included in many other GNU distributions.  Compiling
47    and linking in this code is a waste when using the GNU C library
48    (especially if it is a shared library).  Rather than having every GNU
49    program understand `configure --with-gnu-libc' and omit the object files,
50    it is simpler to just do this in the source for each such file.  */
51
52 #define GETOPT_INTERFACE_VERSION 2
53 #if !defined _LIBC && defined __GLIBC__ && __GLIBC__ >= 2
54 # include <gnu-versions.h>
55 # if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION
56 #  define ELIDE_CODE
57 # endif
58 #endif
59
60 #ifndef ELIDE_CODE
61
62
63 /* This needs to come after some library #include
64    to get __GNU_LIBRARY__ defined.  */
65 #ifdef  __GNU_LIBRARY__
66 /* Don't include stdlib.h for non-GNU C libraries because some of them
67    contain conflicting prototypes for getopt.  */
68 # include <stdlib.h>
69 # include <unistd.h>
70 #endif  /* GNU C library.  */
71
72 #ifdef VMS
73 # include <unixlib.h>
74 # if HAVE_STRING_H - 0
75 #  include <string.h>
76 # endif
77 #endif
78
79 #ifndef _
80 /* This is for other GNU distributions with internationalized messages.
81    When compiling libc, the _ macro is predefined.  */
82 # ifdef HAVE_LIBINTL_H
83 #  include <libintl.h>
84 #  define _(msgid)      gettext (msgid)
85 # else
86 #  define _(msgid)      (msgid)
87 # endif
88 #endif
89
90 /* This version of `getopt' appears to the caller like standard Unix `getopt'
91    but it behaves differently for the user, since it allows the user
92    to intersperse the options with the other arguments.
93
94    As `getopt' works, it permutes the elements of ARGV so that,
95    when it is done, all the options precede everything else.  Thus
96    all application programs are extended to handle flexible argument order.
97
98    Setting the environment variable POSIXLY_CORRECT disables permutation.
99    Then the behavior is completely standard.
100
101    GNU application programs can use a third alternative mode in which
102    they can distinguish the relative order of options and other arguments.  */
103
104 #include "getopt.h"
105
106 /* For communication from `getopt' to the caller.
107    When `getopt' finds an option that takes an argument,
108    the argument value is returned here.
109    Also, when `ordering' is RETURN_IN_ORDER,
110    each non-option ARGV-element is returned here.  */
111
112 #if ! defined(HAVE_GETOPT) && ! defined(HAVE_GETOPT_LONG)
113 char *optarg;
114 #endif
115
116 /* Index in ARGV of the next element to be scanned.
117    This is used for communication to and from the caller
118    and for communication between successive calls to `getopt'.
119
120    On entry to `getopt', zero means this is the first call; initialize.
121
122    When `getopt' returns -1, this is the index of the first of the
123    non-option elements that the caller should itself scan.
124
125    Otherwise, `optind' communicates from one call to the next
126    how much of ARGV has been scanned so far.  */
127
128 /* 1003.2 says this must be 1 before any call.  */
129 #if ! defined(HAVE_GETOPT) && ! defined(HAVE_GETOPT_LONG)
130 int optind = 1;
131 #endif
132
133 /* Formerly, initialization of getopt depended on optind==0, which
134    causes problems with re-calling getopt as programs generally don't
135    know that. */
136
137 #if ! defined(HAVE_GETOPT) && ! defined(HAVE_GETOPT_LONG)
138 int __getopt_initialized;
139 #else
140 extern int __getopt_initialized;
141 #endif
142
143 /* The next char to be scanned in the option-element
144    in which the last option character we returned was found.
145    This allows us to pick up the scan where we left off.
146
147    If this is zero, or a null string, it means resume the scan
148    by advancing to the next ARGV-element.  */
149
150 static char *nextchar;
151
152 /* Callers store zero here to inhibit the error message
153    for unrecognized options.  */
154
155 #if ! defined(HAVE_GETOPT) && ! defined(HAVE_GETOPT_LONG)
156 int opterr = 1;
157 #endif
158
159 /* Set to an option character which was unrecognized.
160    This must be initialized on some systems to avoid linking in the
161    system's own getopt implementation.  */
162
163 #if ! defined(HAVE_GETOPT) && ! defined(HAVE_GETOPT_LONG)
164 int optopt = '?';
165 #endif
166
167 /* Describe how to deal with options that follow non-option ARGV-elements.
168
169    If the caller did not specify anything,
170    the default is REQUIRE_ORDER if the environment variable
171    POSIXLY_CORRECT is defined, PERMUTE otherwise.
172
173    REQUIRE_ORDER means don't recognize them as options;
174    stop option processing when the first non-option is seen.
175    This is what Unix does.
176    This mode of operation is selected by either setting the environment
177    variable POSIXLY_CORRECT, or using `+' as the first character
178    of the list of option characters.
179
180    PERMUTE is the default.  We permute the contents of ARGV as we scan,
181    so that eventually all the non-options are at the end.  This allows options
182    to be given in any order, even with programs that were not written to
183    expect this.
184
185    RETURN_IN_ORDER is an option available to programs that were written
186    to expect options and other ARGV-elements in any order and that care about
187    the ordering of the two.  We describe each non-option ARGV-element
188    as if it were the argument of an option with character code 1.
189    Using `-' as the first character of the list of option characters
190    selects this mode of operation.
191
192    The special argument `--' forces an end of option-scanning regardless
193    of the value of `ordering'.  In the case of RETURN_IN_ORDER, only
194    `--' can cause `getopt' to return -1 with `optind' != ARGC.  */
195
196 static enum
197 {
198   REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
199 } ordering;
200
201 /* Value of POSIXLY_CORRECT environment variable.  */
202 static char *posixly_correct;
203 \f
204 #ifdef  __GNU_LIBRARY__
205 /* We want to avoid inclusion of string.h with non-GNU libraries
206    because there are many ways it can cause trouble.
207    On some systems, it contains special magic macros that don't work
208    in GCC.  */
209 # include <string.h>
210 # define my_index       strchr
211 #else
212
213 # if HAVE_STRING_H
214 #  include <string.h>
215 # else
216 #  include <strings.h>
217 # endif
218
219 /* Avoid depending on library functions or files
220    whose names are inconsistent.  */
221
222 #ifndef getenv
223 extern char *getenv ();
224 #endif
225
226 static char *
227 my_index (str, chr)
228      const char *str;
229      int chr;
230 {
231   while (*str)
232     {
233       if (*str == chr)
234         return (char *) str;
235       str++;
236     }
237   return 0;
238 }
239
240 /* If using GCC, we can safely declare strlen this way.
241    If not using GCC, it is ok not to declare it.  */
242 #ifdef __GNUC__
243 /* Note that Motorola Delta 68k R3V7 comes with GCC but not stddef.h.
244    That was relevant to code that was here before.  */
245 # if (!defined __STDC__ || !__STDC__) && !defined strlen
246 /* gcc with -traditional declares the built-in strlen to return int,
247    and has done so at least since version 2.4.5. -- rms.  */
248 extern int strlen (const char *);
249 # endif /* not __STDC__ */
250 #endif /* __GNUC__ */
251
252 #endif /* not __GNU_LIBRARY__ */
253 \f
254 /* Handle permutation of arguments.  */
255
256 /* Describe the part of ARGV that contains non-options that have
257    been skipped.  `first_nonopt' is the index in ARGV of the first of them;
258    `last_nonopt' is the index after the last of them.  */
259
260 static int first_nonopt;
261 static int last_nonopt;
262
263 #ifdef _LIBC
264 /* Bash 2.0 gives us an environment variable containing flags
265    indicating ARGV elements that should not be considered arguments.  */
266
267 /* Defined in getopt_init.c  */
268 extern char *__getopt_nonoption_flags;
269
270 static int nonoption_flags_max_len;
271 static int nonoption_flags_len;
272
273 static int original_argc;
274 static char *const *original_argv;
275
276 /* Make sure the environment variable bash 2.0 puts in the environment
277    is valid for the getopt call we must make sure that the ARGV passed
278    to getopt is that one passed to the process.  */
279 static void
280 __attribute__ ((unused))
281 store_args_and_env (int argc, char *const *argv)
282 {
283   /* XXX This is no good solution.  We should rather copy the args so
284      that we can compare them later.  But we must not use malloc(3).  */
285   original_argc = argc;
286   original_argv = argv;
287 }
288 # ifdef text_set_element
289 text_set_element (__libc_subinit, store_args_and_env);
290 # endif /* text_set_element */
291
292 # define SWAP_FLAGS(ch1, ch2) \
293   if (nonoption_flags_len > 0)                                                \
294     {                                                                         \
295       char __tmp = __getopt_nonoption_flags[ch1];                             \
296       __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2];          \
297       __getopt_nonoption_flags[ch2] = __tmp;                                  \
298     }
299 #else   /* !_LIBC */
300 # define SWAP_FLAGS(ch1, ch2)
301 #endif  /* _LIBC */
302
303 /* Exchange two adjacent subsequences of ARGV.
304    One subsequence is elements [first_nonopt,last_nonopt)
305    which contains all the non-options that have been skipped so far.
306    The other is elements [last_nonopt,optind), which contains all
307    the options processed since those non-options were skipped.
308
309    `first_nonopt' and `last_nonopt' are relocated so that they describe
310    the new indices of the non-options in ARGV after they are moved.  */
311
312 #if defined __STDC__ && __STDC__
313 static void exchange (char **);
314 #endif
315
316 static void
317 exchange (argv)
318      char **argv;
319 {
320   int bottom = first_nonopt;
321   int middle = last_nonopt;
322   int top = optind;
323   char *tem;
324
325   /* Exchange the shorter segment with the far end of the longer segment.
326      That puts the shorter segment into the right place.
327      It leaves the longer segment in the right place overall,
328      but it consists of two parts that need to be swapped next.  */
329
330 #ifdef _LIBC
331   /* First make sure the handling of the `__getopt_nonoption_flags'
332      string can work normally.  Our top argument must be in the range
333      of the string.  */
334   if (nonoption_flags_len > 0 && top >= nonoption_flags_max_len)
335     {
336       /* We must extend the array.  The user plays games with us and
337          presents new arguments.  */
338       char *new_str = malloc (top + 1);
339       if (new_str == NULL)
340         nonoption_flags_len = nonoption_flags_max_len = 0;
341       else
342         {
343           memset (__mempcpy (new_str, __getopt_nonoption_flags,
344                              nonoption_flags_max_len),
345                   '\0', top + 1 - nonoption_flags_max_len);
346           nonoption_flags_max_len = top + 1;
347           __getopt_nonoption_flags = new_str;
348         }
349     }
350 #endif
351
352   while (top > middle && middle > bottom)
353     {
354       if (top - middle > middle - bottom)
355         {
356           /* Bottom segment is the short one.  */
357           int len = middle - bottom;
358           register int i;
359
360           /* Swap it with the top part of the top segment.  */
361           for (i = 0; i < len; i++)
362             {
363               tem = argv[bottom + i];
364               argv[bottom + i] = argv[top - (middle - bottom) + i];
365               argv[top - (middle - bottom) + i] = tem;
366               SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
367             }
368           /* Exclude the moved bottom segment from further swapping.  */
369           top -= len;
370         }
371       else
372         {
373           /* Top segment is the short one.  */
374           int len = top - middle;
375           register int i;
376
377           /* Swap it with the bottom part of the bottom segment.  */
378           for (i = 0; i < len; i++)
379             {
380               tem = argv[bottom + i];
381               argv[bottom + i] = argv[middle + i];
382               argv[middle + i] = tem;
383               SWAP_FLAGS (bottom + i, middle + i);
384             }
385           /* Exclude the moved top segment from further swapping.  */
386           bottom += len;
387         }
388     }
389
390   /* Update records for the slots the non-options now occupy.  */
391
392   first_nonopt += (optind - last_nonopt);
393   last_nonopt = optind;
394 }
395
396 /* Initialize the internal data when the first call is made.  */
397
398 #if defined __STDC__ && __STDC__
399 static const char *_getopt_initialize (int, char *const *, const char *);
400 #endif
401 static const char *
402 _getopt_initialize (argc, argv, optstring)
403      int argc;
404      char *const *argv;
405      const char *optstring;
406 {
407   /* Start processing options with ARGV-element 1 (since ARGV-element 0
408      is the program name); the sequence of previously skipped
409      non-option ARGV-elements is empty.  */
410
411   first_nonopt = last_nonopt = optind;
412
413   nextchar = NULL;
414
415   posixly_correct = getenv ("POSIXLY_CORRECT");
416
417   /* Determine how to handle the ordering of options and nonoptions.  */
418
419   if (optstring[0] == '-')
420     {
421       ordering = RETURN_IN_ORDER;
422       ++optstring;
423     }
424   else if (optstring[0] == '+')
425     {
426       ordering = REQUIRE_ORDER;
427       ++optstring;
428     }
429   else if (posixly_correct != NULL)
430     ordering = REQUIRE_ORDER;
431   else
432     ordering = PERMUTE;
433
434 #ifdef _LIBC
435   if (posixly_correct == NULL
436       && argc == original_argc && argv == original_argv)
437     {
438       if (nonoption_flags_max_len == 0)
439         {
440           if (__getopt_nonoption_flags == NULL
441               || __getopt_nonoption_flags[0] == '\0')
442             nonoption_flags_max_len = -1;
443           else
444             {
445               const char *orig_str = __getopt_nonoption_flags;
446               int len = nonoption_flags_max_len = strlen (orig_str);
447               if (nonoption_flags_max_len < argc)
448                 nonoption_flags_max_len = argc;
449               __getopt_nonoption_flags =
450                 (char *) malloc (nonoption_flags_max_len);
451               if (__getopt_nonoption_flags == NULL)
452                 nonoption_flags_max_len = -1;
453               else
454                 memset (__mempcpy (__getopt_nonoption_flags, orig_str, len),
455                         '\0', nonoption_flags_max_len - len);
456             }
457         }
458       nonoption_flags_len = nonoption_flags_max_len;
459     }
460   else
461     nonoption_flags_len = 0;
462 #endif
463
464   return optstring;
465 }
466 \f
467 /* Scan elements of ARGV (whose length is ARGC) for option characters
468    given in OPTSTRING.
469
470    If an element of ARGV starts with '-', and is not exactly "-" or "--",
471    then it is an option element.  The characters of this element
472    (aside from the initial '-') are option characters.  If `getopt'
473    is called repeatedly, it returns successively each of the option characters
474    from each of the option elements.
475
476    If `getopt' finds another option character, it returns that character,
477    updating `optind' and `nextchar' so that the next call to `getopt' can
478    resume the scan with the following option character or ARGV-element.
479
480    If there are no more option characters, `getopt' returns -1.
481    Then `optind' is the index in ARGV of the first ARGV-element
482    that is not an option.  (The ARGV-elements have been permuted
483    so that those that are not options now come last.)
484
485    OPTSTRING is a string containing the legitimate option characters.
486    If an option character is seen that is not listed in OPTSTRING,
487    return '?' after printing an error message.  If you set `opterr' to
488    zero, the error message is suppressed but we still return '?'.
489
490    If a char in OPTSTRING is followed by a colon, that means it wants an arg,
491    so the following text in the same ARGV-element, or the text of the following
492    ARGV-element, is returned in `optarg'.  Two colons mean an option that
493    wants an optional arg; if there is text in the current ARGV-element,
494    it is returned in `optarg', otherwise `optarg' is set to zero.
495
496    If OPTSTRING starts with `-' or `+', it requests different methods of
497    handling the non-option ARGV-elements.
498    See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
499
500    Long-named options begin with `--' instead of `-'.
501    Their names may be abbreviated as long as the abbreviation is unique
502    or is an exact match for some defined option.  If they have an
503    argument, it follows the option name in the same ARGV-element, separated
504    from the option name by a `=', or else the in next ARGV-element.
505    When `getopt' finds a long-named option, it returns 0 if that option's
506    `flag' field is nonzero, the value of the option's `val' field
507    if the `flag' field is zero.
508
509    The elements of ARGV aren't really const, because we permute them.
510    But we pretend they're const in the prototype to be compatible
511    with other systems.
512
513    LONGOPTS is a vector of `struct option' terminated by an
514    element containing a name which is zero.
515
516    LONGIND returns the index in LONGOPT of the long-named option found.
517    It is only valid when a long-named option has been found by the most
518    recent call.
519
520    If LONG_ONLY is nonzero, '-' as well as '--' can introduce
521    long-named options.  */
522
523 int
524 _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
525      int argc;
526      char *const *argv;
527      const char *optstring;
528      const struct option *longopts;
529      int *longind;
530      int long_only;
531 {
532   int print_errors = opterr;
533   if (optstring[0] == ':')
534     print_errors = 0;
535
536   optarg = NULL;
537
538   if (optind == 0 || !__getopt_initialized)
539     {
540       if (optind == 0)
541         optind = 1;     /* Don't scan ARGV[0], the program name.  */
542       optstring = _getopt_initialize (argc, argv, optstring);
543       __getopt_initialized = 1;
544     }
545
546   /* Test whether ARGV[optind] points to a non-option argument.
547      Either it does not have option syntax, or there is an environment flag
548      from the shell indicating it is not an option.  The later information
549      is only used when the used in the GNU libc.  */
550 #ifdef _LIBC
551 # define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0'       \
552                       || (optind < nonoption_flags_len                        \
553                           && __getopt_nonoption_flags[optind] == '1'))
554 #else
555 # define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0')
556 #endif
557
558   if (nextchar == NULL || *nextchar == '\0')
559     {
560       /* Advance to the next ARGV-element.  */
561
562       /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
563          moved back by the user (who may also have changed the arguments).  */
564       if (last_nonopt > optind)
565         last_nonopt = optind;
566       if (first_nonopt > optind)
567         first_nonopt = optind;
568
569       if (ordering == PERMUTE)
570         {
571           /* If we have just processed some options following some non-options,
572              exchange them so that the options come first.  */
573
574           if (first_nonopt != last_nonopt && last_nonopt != optind)
575             exchange ((char **) argv);
576           else if (last_nonopt != optind)
577             first_nonopt = optind;
578
579           /* Skip any additional non-options
580              and extend the range of non-options previously skipped.  */
581
582           while (optind < argc && NONOPTION_P)
583             optind++;
584           last_nonopt = optind;
585         }
586
587       /* The special ARGV-element `--' means premature end of options.
588          Skip it like a null option,
589          then exchange with previous non-options as if it were an option,
590          then skip everything else like a non-option.  */
591
592       if (optind != argc && !strcmp (argv[optind], "--"))
593         {
594           optind++;
595
596           if (first_nonopt != last_nonopt && last_nonopt != optind)
597             exchange ((char **) argv);
598           else if (first_nonopt == last_nonopt)
599             first_nonopt = optind;
600           last_nonopt = argc;
601
602           optind = argc;
603         }
604
605       /* If we have done all the ARGV-elements, stop the scan
606          and back over any non-options that we skipped and permuted.  */
607
608       if (optind == argc)
609         {
610           /* Set the next-arg-index to point at the non-options
611              that we previously skipped, so the caller will digest them.  */
612           if (first_nonopt != last_nonopt)
613             optind = first_nonopt;
614           return -1;
615         }
616
617       /* If we have come to a non-option and did not permute it,
618          either stop the scan or describe it to the caller and pass it by.  */
619
620       if (NONOPTION_P)
621         {
622           if (ordering == REQUIRE_ORDER)
623             return -1;
624           optarg = argv[optind++];
625           return 1;
626         }
627
628       /* We have found another option-ARGV-element.
629          Skip the initial punctuation.  */
630
631       nextchar = (argv[optind] + 1
632                   + (longopts != NULL && argv[optind][1] == '-'));
633     }
634
635   /* Decode the current option-ARGV-element.  */
636
637   /* Check whether the ARGV-element is a long option.
638
639      If long_only and the ARGV-element has the form "-f", where f is
640      a valid short option, don't consider it an abbreviated form of
641      a long option that starts with f.  Otherwise there would be no
642      way to give the -f short option.
643
644      On the other hand, if there's a long option "fubar" and
645      the ARGV-element is "-fu", do consider that an abbreviation of
646      the long option, just like "--fu", and not "-f" with arg "u".
647
648      This distinction seems to be the most useful approach.  */
649
650   if (longopts != NULL
651       && (argv[optind][1] == '-'
652           || (long_only && (argv[optind][2] || !my_index (optstring, argv[optind][1])))))
653     {
654       char *nameend;
655       const struct option *p;
656       const struct option *pfound = NULL;
657       int exact = 0;
658       int ambig = 0;
659       int indfound = -1;
660       int option_index;
661
662       for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
663         /* Do nothing.  */ ;
664
665       /* Test all long options for either exact match
666          or abbreviated matches.  */
667       for (p = longopts, option_index = 0; p->name; p++, option_index++)
668         if (!strncmp (p->name, nextchar, nameend - nextchar))
669           {
670             if ((unsigned int) (nameend - nextchar)
671                 == (unsigned int) strlen (p->name))
672               {
673                 /* Exact match found.  */
674                 pfound = p;
675                 indfound = option_index;
676                 exact = 1;
677                 break;
678               }
679             else if (pfound == NULL)
680               {
681                 /* First nonexact match found.  */
682                 pfound = p;
683                 indfound = option_index;
684               }
685             else
686               /* Second or later nonexact match found.  */
687               ambig = 1;
688           }
689
690       if (ambig && !exact)
691         {
692           if (print_errors)
693             fprintf (stderr, _("%s: option `%s' is ambiguous\n"),
694                      argv[0], argv[optind]);
695           nextchar += strlen (nextchar);
696           optind++;
697           optopt = 0;
698           return '?';
699         }
700
701       if (pfound != NULL)
702         {
703           option_index = indfound;
704           optind++;
705           if (*nameend)
706             {
707               /* Don't test has_arg with >, because some C compilers don't
708                  allow it to be used on enums.  */
709               if (pfound->has_arg)
710                 optarg = nameend + 1;
711               else
712                 {
713                   if (print_errors)
714                     {
715                       if (argv[optind - 1][1] == '-')
716                         /* --option */
717                         fprintf (stderr,
718                                  _("%s: option `--%s' doesn't allow an argument\n"),
719                                  argv[0], pfound->name);
720                       else
721                         /* +option or -option */
722                         fprintf (stderr,
723                                  _("%s: option `%c%s' doesn't allow an argument\n"),
724                                  argv[0], argv[optind - 1][0], pfound->name);
725                     }
726
727                   nextchar += strlen (nextchar);
728
729                   optopt = pfound->val;
730                   return '?';
731                 }
732             }
733           else if (pfound->has_arg == 1)
734             {
735               if (optind < argc)
736                 optarg = argv[optind++];
737               else
738                 {
739                   if (print_errors)
740                     fprintf (stderr,
741                            _("%s: option `%s' requires an argument\n"),
742                            argv[0], argv[optind - 1]);
743                   nextchar += strlen (nextchar);
744                   optopt = pfound->val;
745                   return optstring[0] == ':' ? ':' : '?';
746                 }
747             }
748           nextchar += strlen (nextchar);
749           if (longind != NULL)
750             *longind = option_index;
751           if (pfound->flag)
752             {
753               *(pfound->flag) = pfound->val;
754               return 0;
755             }
756           return pfound->val;
757         }
758
759       /* Can't find it as a long option.  If this is not getopt_long_only,
760          or the option starts with '--' or is not a valid short
761          option, then it's an error.
762          Otherwise interpret it as a short option.  */
763       if (!long_only || argv[optind][1] == '-'
764           || my_index (optstring, *nextchar) == NULL)
765         {
766           if (print_errors)
767             {
768               if (argv[optind][1] == '-')
769                 /* --option */
770                 fprintf (stderr, _("%s: unrecognized option `--%s'\n"),
771                          argv[0], nextchar);
772               else
773                 /* +option or -option */
774                 fprintf (stderr, _("%s: unrecognized option `%c%s'\n"),
775                          argv[0], argv[optind][0], nextchar);
776             }
777           nextchar = (char *) "";
778           optind++;
779           optopt = 0;
780           return '?';
781         }
782     }
783
784   /* Look at and handle the next short option-character.  */
785
786   {
787     char c = *nextchar++;
788     char *temp = my_index (optstring, c);
789
790     /* Increment `optind' when we start to process its last character.  */
791     if (*nextchar == '\0')
792       ++optind;
793
794     if (temp == NULL || c == ':')
795       {
796         if (print_errors)
797           {
798             if (posixly_correct)
799               /* 1003.2 specifies the format of this message.  */
800               fprintf (stderr, _("%s: illegal option -- %c\n"),
801                        argv[0], c);
802             else
803               fprintf (stderr, _("%s: invalid option -- %c\n"),
804                        argv[0], c);
805           }
806         optopt = c;
807         return '?';
808       }
809     /* Convenience. Treat POSIX -W foo same as long option --foo */
810     if (temp[0] == 'W' && temp[1] == ';')
811       {
812         char *nameend;
813         const struct option *p;
814         const struct option *pfound = NULL;
815         int exact = 0;
816         int ambig = 0;
817         int indfound = 0;
818         int option_index;
819
820         /* This is an option that requires an argument.  */
821         if (*nextchar != '\0')
822           {
823             optarg = nextchar;
824             /* If we end this ARGV-element by taking the rest as an arg,
825                we must advance to the next element now.  */
826             optind++;
827           }
828         else if (optind == argc)
829           {
830             if (print_errors)
831               {
832                 /* 1003.2 specifies the format of this message.  */
833                 fprintf (stderr, _("%s: option requires an argument -- %c\n"),
834                          argv[0], c);
835               }
836             optopt = c;
837             if (optstring[0] == ':')
838               c = ':';
839             else
840               c = '?';
841             return c;
842           }
843         else
844           /* We already incremented `optind' once;
845              increment it again when taking next ARGV-elt as argument.  */
846           optarg = argv[optind++];
847
848         /* optarg is now the argument, see if it's in the
849            table of longopts.  */
850
851         for (nextchar = nameend = optarg; *nameend && *nameend != '='; nameend++)
852           /* Do nothing.  */ ;
853
854         /* Test all long options for either exact match
855            or abbreviated matches.  */
856         for (p = longopts, option_index = 0; p->name; p++, option_index++)
857           if (!strncmp (p->name, nextchar, nameend - nextchar))
858             {
859               if ((unsigned int) (nameend - nextchar) == strlen (p->name))
860                 {
861                   /* Exact match found.  */
862                   pfound = p;
863                   indfound = option_index;
864                   exact = 1;
865                   break;
866                 }
867               else if (pfound == NULL)
868                 {
869                   /* First nonexact match found.  */
870                   pfound = p;
871                   indfound = option_index;
872                 }
873               else
874                 /* Second or later nonexact match found.  */
875                 ambig = 1;
876             }
877         if (ambig && !exact)
878           {
879             if (print_errors)
880               fprintf (stderr, _("%s: option `-W %s' is ambiguous\n"),
881                        argv[0], argv[optind]);
882             nextchar += strlen (nextchar);
883             optind++;
884             return '?';
885           }
886         if (pfound != NULL)
887           {
888             option_index = indfound;
889             if (*nameend)
890               {
891                 /* Don't test has_arg with >, because some C compilers don't
892                    allow it to be used on enums.  */
893                 if (pfound->has_arg)
894                   optarg = nameend + 1;
895                 else
896                   {
897                     if (print_errors)
898                       fprintf (stderr, _("\
899 %s: option `-W %s' doesn't allow an argument\n"),
900                                argv[0], pfound->name);
901
902                     nextchar += strlen (nextchar);
903                     return '?';
904                   }
905               }
906             else if (pfound->has_arg == 1)
907               {
908                 if (optind < argc)
909                   optarg = argv[optind++];
910                 else
911                   {
912                     if (print_errors)
913                       fprintf (stderr,
914                                _("%s: option `%s' requires an argument\n"),
915                                argv[0], argv[optind - 1]);
916                     nextchar += strlen (nextchar);
917                     return optstring[0] == ':' ? ':' : '?';
918                   }
919               }
920             nextchar += strlen (nextchar);
921             if (longind != NULL)
922               *longind = option_index;
923             if (pfound->flag)
924               {
925                 *(pfound->flag) = pfound->val;
926                 return 0;
927               }
928             return pfound->val;
929           }
930           nextchar = NULL;
931           return 'W';   /* Let the application handle it.   */
932       }
933     if (temp[1] == ':')
934       {
935         if (temp[2] == ':')
936           {
937             /* This is an option that accepts an argument optionally.  */
938             if (*nextchar != '\0')
939               {
940                 optarg = nextchar;
941                 optind++;
942               }
943             else
944               optarg = NULL;
945             nextchar = NULL;
946           }
947         else
948           {
949             /* This is an option that requires an argument.  */
950             if (*nextchar != '\0')
951               {
952                 optarg = nextchar;
953                 /* If we end this ARGV-element by taking the rest as an arg,
954                    we must advance to the next element now.  */
955                 optind++;
956               }
957             else if (optind == argc)
958               {
959                 if (print_errors)
960                   {
961                     /* 1003.2 specifies the format of this message.  */
962                     fprintf (stderr,
963                              _("%s: option requires an argument -- %c\n"),
964                              argv[0], c);
965                   }
966                 optopt = c;
967                 if (optstring[0] == ':')
968                   c = ':';
969                 else
970                   c = '?';
971               }
972             else
973               /* We already incremented `optind' once;
974                  increment it again when taking next ARGV-elt as argument.  */
975               optarg = argv[optind++];
976             nextchar = NULL;
977           }
978       }
979     return c;
980   }
981 }
982
983 #ifndef HAVE_GETOPT
984 int
985 getopt (argc, argv, optstring)
986      int argc;
987      char *const *argv;
988      const char *optstring;
989 {
990   return _getopt_internal (argc, argv, optstring,
991                            (const struct option *) 0,
992                            (int *) 0,
993                            0);
994 }
995 #endif
996
997 #endif  /* Not ELIDE_CODE.  */
998 \f
999 #ifdef TEST
1000
1001 /* Compile with -DTEST to make an executable for use in testing
1002    the above definition of `getopt'.  */
1003
1004 int
1005 main (argc, argv)
1006      int argc;
1007      char **argv;
1008 {
1009   int c;
1010   int digit_optind = 0;
1011
1012   while (1)
1013     {
1014       int this_option_optind = optind ? optind : 1;
1015
1016       c = getopt (argc, argv, "abc:d:0123456789");
1017       if (c == -1)
1018         break;
1019
1020       switch (c)
1021         {
1022         case '0':
1023         case '1':
1024         case '2':
1025         case '3':
1026         case '4':
1027         case '5':
1028         case '6':
1029         case '7':
1030         case '8':
1031         case '9':
1032           if (digit_optind != 0 && digit_optind != this_option_optind)
1033             printf ("digits occur in two different argv-elements.\n");
1034           digit_optind = this_option_optind;
1035           printf ("option %c\n", c);
1036           break;
1037
1038         case 'a':
1039           printf ("option a\n");
1040           break;
1041
1042         case 'b':
1043           printf ("option b\n");
1044           break;
1045
1046         case 'c':
1047           printf ("option c with value `%s'\n", optarg);
1048           break;
1049
1050         case '?':
1051           break;
1052
1053         default:
1054           printf ("?? getopt returned character code 0%o ??\n", c);
1055         }
1056     }
1057
1058   if (optind < argc)
1059     {
1060       printf ("non-option ARGV-elements: ");
1061       while (optind < argc)
1062         printf ("%s ", argv[optind++]);
1063       printf ("\n");
1064     }
1065
1066   exit (0);
1067 }
1068
1069 #endif /* TEST */