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