Fix description
[vlc.git] / src / extras / getopt.c
blobbaf200960cf6655b1a09f5389ce0f8c328db3333
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!
6 Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97
7 Free Software Foundation, Inc.
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.
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.
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.
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. */
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
33 #ifdef HAVE_CONFIG_H
34 #include <config.h>
35 #endif
37 #if !defined (__STDC__) || !__STDC__
38 /* This is a separate conditional since some stdc systems
39 reject `defined (const)'. */
40 #ifndef const
41 #define const
42 #endif
43 #endif
45 #include <stdio.h>
47 /* Comment out all this code if we are using the GNU C Library, and are not
48 actually compiling the library itself. This code is part of the GNU C
49 Library, but also included in many other GNU distributions. Compiling
50 and linking in this code is a waste when using the GNU C library
51 (especially if it is a shared library). Rather than having every GNU
52 program understand `configure --with-gnu-libc' and omit the object files,
53 it is simpler to just do this in the source for each such file. */
55 #define GETOPT_INTERFACE_VERSION 2
56 #if !defined (_LIBC) && defined (__GLIBC__) && __GLIBC__ >= 2
57 #include <gnu-versions.h>
58 #if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION
59 #define ELIDE_CODE
60 #endif
61 #endif
63 #ifndef ELIDE_CODE
65 /* This needs to come after some library #include
66 to get __GNU_LIBRARY__ defined. */
67 #ifdef __GNU_LIBRARY__
68 /* Don't include stdlib.h for non-GNU C libraries because some of them
69 contain conflicting prototypes for getopt. */
70 #include <stdlib.h>
71 #include <unistd.h>
72 #endif /* GNU C library. */
74 #ifdef VMS
75 #include <unixlib.h>
76 #if HAVE_STRING_H - 0
77 #include <string.h>
78 #ifdef STRNCASECMP_IN_STRINGS_H
79 # include <strings.h>
80 #endif
81 #endif
82 #endif
84 #if defined (WIN32) && !defined (__CYGWIN32__) || defined(UNDER_CE)
85 /* It's not Unix, really. See? Capital letters. */
86 #include <windows.h>
87 #define getpid() GetCurrentProcessId()
88 #endif
90 #ifndef _
91 /* This is for other GNU distributions with internationalized messages.
92 When compiling libc, the _ macro is predefined. */
93 #ifdef HAVE_LIBINTL_H
94 #include <libintl.h>
95 #define _(msgid) gettext (msgid)
96 #else
97 #define _(msgid) (msgid)
98 #endif
99 #endif
101 /* This version of `getopt' appears to the caller like standard Unix `getopt'
102 but it behaves differently for the user, since it allows the user
103 to intersperse the options with the other arguments.
105 As `getopt' works, it permutes the elements of ARGV so that,
106 when it is done, all the options precede everything else. Thus
107 all application programs are extended to handle flexible argument order.
109 Setting the environment variable POSIXLY_CORRECT disables permutation.
110 Then the behavior is completely standard.
112 GNU application programs can use a third alternative mode in which
113 they can distinguish the relative order of options and other arguments. */
115 #include "getopt.h"
117 /* For communication from `getopt' to the caller.
118 When `getopt' finds an option that takes an argument,
119 the argument value is returned here.
120 Also, when `ordering' is RETURN_IN_ORDER,
121 each non-option ARGV-element is returned here. */
123 char *optarg = NULL;
125 /* Index in ARGV of the next element to be scanned.
126 This is used for communication to and from the caller
127 and for communication between successive calls to `getopt'.
129 On entry to `getopt', zero means this is the first call; initialize.
131 When `getopt' returns -1, this is the index of the first of the
132 non-option elements that the caller should itself scan.
134 Otherwise, `optind' communicates from one call to the next
135 how much of ARGV has been scanned so far. */
137 /* 1003.2 says this must be 1 before any call. */
138 int optind = 1;
140 /* Formerly, initialization of getopt depended on optind==0, which
141 causes problems with re-calling getopt as programs generally don't
142 know that. */
144 int __getopt_initialized = 0;
146 /* The next char to be scanned in the option-element
147 in which the last option character we returned was found.
148 This allows us to pick up the scan where we left off.
150 If this is zero, or a null string, it means resume the scan
151 by advancing to the next ARGV-element. */
153 static char *nextchar;
155 /* Callers store zero here to inhibit the error message
156 for unrecognized options. */
158 int opterr = 1;
160 /* Set to an option character which was unrecognized.
161 This must be initialized on some systems to avoid linking in the
162 system's own getopt implementation. */
164 int optopt = '?';
166 /* Describe how to deal with options that follow non-option ARGV-elements.
168 If the caller did not specify anything,
169 the default is REQUIRE_ORDER if the environment variable
170 POSIXLY_CORRECT is defined, PERMUTE otherwise.
172 REQUIRE_ORDER means don't recognize them as options;
173 stop option processing when the first non-option is seen.
174 This is what Unix does.
175 This mode of operation is selected by either setting the environment
176 variable POSIXLY_CORRECT, or using `+' as the first character
177 of the list of option characters.
179 PERMUTE is the default. We permute the contents of ARGV as we scan,
180 so that eventually all the non-options are at the end. This allows options
181 to be given in any order, even with programs that were not written to
182 expect this.
184 RETURN_IN_ORDER is an option available to programs that were written
185 to expect options and other ARGV-elements in any order and that care about
186 the ordering of the two. We describe each non-option ARGV-element
187 as if it were the argument of an option with character code 1.
188 Using `-' as the first character of the list of option characters
189 selects this mode of operation.
191 The special argument `--' forces an end of option-scanning regardless
192 of the value of `ordering'. In the case of RETURN_IN_ORDER, only
193 `--' can cause `getopt' to return -1 with `optind' != ARGC. */
195 static enum
197 REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
199 ordering;
201 /* Value of POSIXLY_CORRECT environment variable. */
202 static char *posixly_correct;
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
213 /* Avoid depending on library functions or files
214 whose names are inconsistent. */
216 static char *
217 my_index(str, chr)
218 const char *str;
219 int chr;
221 while (*str)
223 if (*str == chr)
224 return (char *) str;
225 str++;
227 return 0;
230 /* If using GCC, we can safely declare strlen this way.
231 If not using GCC, it is ok not to declare it. */
232 #ifdef __GNUC__
233 /* Note that Motorola Delta 68k R3V7 comes with GCC but not stddef.h.
234 That was relevant to code that was here before. */
235 #if !defined (__STDC__) || !__STDC__
236 /* gcc with -traditional declares the built-in strlen to return int,
237 and has done so at least since version 2.4.5. -- rms. */
238 extern int strlen(const char *);
240 #endif /* not __STDC__ */
241 #endif /* __GNUC__ */
243 #endif /* not __GNU_LIBRARY__ */
245 /* Handle permutation of arguments. */
247 /* Describe the part of ARGV that contains non-options that have
248 been skipped. `first_nonopt' is the index in ARGV of the first of them;
249 `last_nonopt' is the index after the last of them. */
251 static int first_nonopt;
252 static int last_nonopt;
254 #ifdef _LIBC
255 /* Bash 2.0 gives us an environment variable containing flags
256 indicating ARGV elements that should not be considered arguments. */
258 static const char *nonoption_flags;
259 static int nonoption_flags_len;
261 static int original_argc;
262 static char *const *original_argv;
264 /* Make sure the environment variable bash 2.0 puts in the environment
265 is valid for the getopt call we must make sure that the ARGV passed
266 to getopt is that one passed to the process. */
267 static void store_args(int argc, char *const *argv) __attribute__((unused));
268 static void
269 store_args(int argc, char *const *argv)
271 /* XXX This is no good solution. We should rather copy the args so
272 that we can compare them later. But we must not use malloc(3). */
273 original_argc = argc;
274 original_argv = argv;
276 text_set_element(__libc_subinit, store_args);
277 #endif
279 /* Exchange two adjacent subsequences of ARGV.
280 One subsequence is elements [first_nonopt,last_nonopt)
281 which contains all the non-options that have been skipped so far.
282 The other is elements [last_nonopt,optind), which contains all
283 the options processed since those non-options were skipped.
285 `first_nonopt' and `last_nonopt' are relocated so that they describe
286 the new indices of the non-options in ARGV after they are moved. */
288 #if defined (__STDC__) && __STDC__
289 static void exchange(char **);
291 #endif
293 static void
294 exchange(argv)
295 char **argv;
297 int bottom = first_nonopt;
298 int middle = last_nonopt;
299 int top = optind;
300 char *tem;
302 /* Exchange the shorter segment with the far end of the longer segment.
303 That puts the shorter segment into the right place.
304 It leaves the longer segment in the right place overall,
305 but it consists of two parts that need to be swapped next. */
307 while (top > middle && middle > bottom)
309 if (top - middle > middle - bottom)
311 /* Bottom segment is the short one. */
312 int len = middle - bottom;
313 register int i;
315 /* Swap it with the top part of the top segment. */
316 for (i = 0; i < len; i++)
318 tem = argv[bottom + i];
319 argv[bottom + i] = argv[top - (middle - bottom) + i];
320 argv[top - (middle - bottom) + i] = tem;
322 /* Exclude the moved bottom segment from further swapping. */
323 top -= len;
325 else
327 /* Top segment is the short one. */
328 int len = top - middle;
329 register int i;
331 /* Swap it with the bottom part of the bottom segment. */
332 for (i = 0; i < len; i++)
334 tem = argv[bottom + i];
335 argv[bottom + i] = argv[middle + i];
336 argv[middle + i] = tem;
338 /* Exclude the moved top segment from further swapping. */
339 bottom += len;
343 /* Update records for the slots the non-options now occupy. */
345 first_nonopt += (optind - last_nonopt);
346 last_nonopt = optind;
349 /* Initialize the internal data when the first call is made. */
351 #if defined (__STDC__) && __STDC__
352 static const char *_getopt_initialize(int, char *const *, const char *);
354 #endif
355 static const char *
356 _getopt_initialize(argc, argv, optstring)
357 int argc;
358 char *const *argv;
359 const char *optstring;
361 /* Start processing options with ARGV-element 1 (since ARGV-element 0
362 is the program name); the sequence of previously skipped
363 non-option ARGV-elements is empty. */
365 first_nonopt = last_nonopt = optind = 1;
367 nextchar = NULL;
369 posixly_correct = getenv("POSIXLY_CORRECT");
371 /* Determine how to handle the ordering of options and nonoptions. */
373 if (optstring[0] == '-')
375 ordering = RETURN_IN_ORDER;
376 ++optstring;
378 else if (optstring[0] == '+')
380 ordering = REQUIRE_ORDER;
381 ++optstring;
383 else if (posixly_correct != NULL)
384 ordering = REQUIRE_ORDER;
385 else
386 ordering = PERMUTE;
388 #ifdef _LIBC
389 if (posixly_correct == NULL
390 && argc == original_argc && argv == original_argv)
392 /* Bash 2.0 puts a special variable in the environment for each
393 command it runs, specifying which ARGV elements are the results of
394 file name wildcard expansion and therefore should not be
395 considered as options. */
396 char var[100];
398 sprintf(var, "_%d_GNU_nonoption_argv_flags_", getpid());
399 nonoption_flags = getenv(var);
400 if (nonoption_flags == NULL)
401 nonoption_flags_len = 0;
402 else
403 nonoption_flags_len = strlen(nonoption_flags);
405 else
406 nonoption_flags_len = 0;
407 #endif
409 return optstring;
412 /* Scan elements of ARGV (whose length is ARGC) for option characters
413 given in OPTSTRING.
415 If an element of ARGV starts with '-', and is not exactly "-" or "--",
416 then it is an option element. The characters of this element
417 (aside from the initial '-') are option characters. If `getopt'
418 is called repeatedly, it returns successively each of the option characters
419 from each of the option elements.
421 If `getopt' finds another option character, it returns that character,
422 updating `optind' and `nextchar' so that the next call to `getopt' can
423 resume the scan with the following option character or ARGV-element.
425 If there are no more option characters, `getopt' returns -1.
426 Then `optind' is the index in ARGV of the first ARGV-element
427 that is not an option. (The ARGV-elements have been permuted
428 so that those that are not options now come last.)
430 OPTSTRING is a string containing the legitimate option characters.
431 If an option character is seen that is not listed in OPTSTRING,
432 return '?' after printing an error message. If you set `opterr' to
433 zero, the error message is suppressed but we still return '?'.
435 If a char in OPTSTRING is followed by a colon, that means it wants an arg,
436 so the following text in the same ARGV-element, or the text of the following
437 ARGV-element, is returned in `optarg'. Two colons mean an option that
438 wants an optional arg; if there is text in the current ARGV-element,
439 it is returned in `optarg', otherwise `optarg' is set to zero.
441 If OPTSTRING starts with `-' or `+', it requests different methods of
442 handling the non-option ARGV-elements.
443 See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
445 Long-named options begin with `--' instead of `-'.
446 Their names may be abbreviated as long as the abbreviation is unique
447 or is an exact match for some defined option. If they have an
448 argument, it follows the option name in the same ARGV-element, separated
449 from the option name by a `=', or else the in next ARGV-element.
450 When `getopt' finds a long-named option, it returns 0 if that option's
451 `flag' field is nonzero, the value of the option's `val' field
452 if the `flag' field is zero.
454 The elements of ARGV aren't really const, because we permute them.
455 But we pretend they're const in the prototype to be compatible
456 with other systems.
458 LONGOPTS is a vector of `struct option' terminated by an
459 element containing a name which is zero.
461 LONGIND returns the index in LONGOPT of the long-named option found.
462 It is only valid when a long-named option has been found by the most
463 recent call.
465 If LONG_ONLY is nonzero, '-' as well as '--' can introduce
466 long-named options. */
469 _getopt_internal(argc, argv, optstring, longopts, longind, long_only)
470 int argc;
471 char *const *argv;
472 const char *optstring;
473 const struct option *longopts;
474 int *longind;
475 int long_only;
477 optarg = NULL;
479 if (!__getopt_initialized || optind == 0)
481 optstring = _getopt_initialize(argc, argv, optstring);
482 optind = 1; /* Don't scan ARGV[0], the program name. */
483 __getopt_initialized = 1;
486 /* Test whether ARGV[optind] points to a non-option argument.
487 Either it does not have option syntax, or there is an environment flag
488 from the shell indicating it is not an option. The later information
489 is only used when the used in the GNU libc. */
490 #ifdef _LIBC
491 #define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0' \
492 || (optind < nonoption_flags_len \
493 && nonoption_flags[optind] == '1'))
494 #else
495 #define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0')
496 #endif
498 if (nextchar == NULL || *nextchar == '\0')
500 /* Advance to the next ARGV-element. */
502 /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
503 moved back by the user (who may also have changed the arguments). */
504 if (last_nonopt > optind)
505 last_nonopt = optind;
506 if (first_nonopt > optind)
507 first_nonopt = optind;
509 if (ordering == PERMUTE)
511 /* If we have just processed some options following some non-options,
512 exchange them so that the options come first. */
514 if (first_nonopt != last_nonopt && last_nonopt != optind)
515 exchange((char **) argv);
516 else if (last_nonopt != optind)
517 first_nonopt = optind;
519 /* Skip any additional non-options
520 and extend the range of non-options previously skipped. */
522 while (optind < argc && NONOPTION_P)
523 optind++;
524 last_nonopt = optind;
527 /* The special ARGV-element `--' means premature end of options.
528 Skip it like a null option,
529 then exchange with previous non-options as if it were an option,
530 then skip everything else like a non-option. */
532 if (optind != argc && !strcmp(argv[optind], "--"))
534 optind++;
536 if (first_nonopt != last_nonopt && last_nonopt != optind)
537 exchange((char **) argv);
538 else if (first_nonopt == last_nonopt)
539 first_nonopt = optind;
540 last_nonopt = argc;
542 optind = argc;
545 /* If we have done all the ARGV-elements, stop the scan
546 and back over any non-options that we skipped and permuted. */
548 if (optind == argc)
550 /* Set the next-arg-index to point at the non-options
551 that we previously skipped, so the caller will digest them. */
552 if (first_nonopt != last_nonopt)
553 optind = first_nonopt;
554 return -1;
557 /* If we have come to a non-option and did not permute it,
558 either stop the scan or describe it to the caller and pass it by. */
560 if (NONOPTION_P)
562 if (ordering == REQUIRE_ORDER)
563 return -1;
564 optarg = argv[optind++];
565 return 1;
568 /* We have found another option-ARGV-element.
569 Skip the initial punctuation. */
571 nextchar = (argv[optind] + 1
572 + (longopts != NULL && argv[optind][1] == '-'));
575 /* Decode the current option-ARGV-element. */
577 /* Check whether the ARGV-element is a long option.
579 If long_only and the ARGV-element has the form "-f", where f is
580 a valid short option, don't consider it an abbreviated form of
581 a long option that starts with f. Otherwise there would be no
582 way to give the -f short option.
584 On the other hand, if there's a long option "fubar" and
585 the ARGV-element is "-fu", do consider that an abbreviation of
586 the long option, just like "--fu", and not "-f" with arg "u".
588 This distinction seems to be the most useful approach. */
590 if (longopts != NULL
591 && (argv[optind][1] == '-'
592 || (long_only && (argv[optind][2] || !my_index(optstring, argv[optind][1])))))
594 char *nameend;
595 const struct option *p;
596 const struct option *pfound = NULL;
597 int exact = 0;
598 int ambig = 0;
599 int indfound = -1;
600 int option_index;
602 for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
603 /* Do nothing. */ ;
605 /* Test all long options for either exact match
606 or abbreviated matches. */
607 for (p = longopts, option_index = 0; p->name; p++, option_index++)
608 if (!strncmp(p->name, nextchar, nameend - nextchar))
610 if ((unsigned int) (nameend - nextchar)
611 == (unsigned int) strlen(p->name))
613 /* Exact match found. */
614 pfound = p;
615 indfound = option_index;
616 exact = 1;
617 break;
619 else if (pfound == NULL)
621 /* First nonexact match found. */
622 pfound = p;
623 indfound = option_index;
625 else
626 /* Second or later nonexact match found. */
627 ambig = 1;
630 if (ambig && !exact)
632 if (opterr)
633 fprintf(stderr, _("%s: option `%s' is ambiguous\n"),
634 argv[0], argv[optind]);
635 nextchar += strlen(nextchar);
636 optind++;
637 optopt = 0;
638 return '?';
641 if (pfound != NULL)
643 option_index = indfound;
644 optind++;
645 if (*nameend)
647 /* Don't test has_arg with >, because some C compilers don't
648 allow it to be used on enums. */
649 if (pfound->has_arg)
650 optarg = nameend + 1;
651 else
653 if (opterr)
655 if (argv[optind - 1][1] == '-')
656 /* --option */
657 fprintf(stderr,
658 _("%s: option `--%s' doesn't allow an argument\n"),
659 argv[0], pfound->name);
660 else
661 /* +option or -option */
662 fprintf(stderr,
663 _("%s: option `%c%s' doesn't allow an argument\n"),
664 argv[0], argv[optind - 1][0], pfound->name);
667 nextchar += strlen(nextchar);
669 optopt = pfound->val;
670 return '?';
673 else if (pfound->has_arg == 1)
675 if (optind < argc)
676 optarg = argv[optind++];
677 else
679 if (opterr)
680 fprintf(stderr,
681 _("%s: option `%s' requires an argument\n"),
682 argv[0], argv[optind - 1]);
683 nextchar += strlen(nextchar);
684 optopt = pfound->val;
685 return optstring[0] == ':' ? ':' : '?';
688 nextchar += strlen(nextchar);
689 if (longind != NULL)
690 *longind = option_index;
691 if (pfound->flag)
693 *(pfound->flag) = pfound->val;
694 return 0;
696 return pfound->val;
699 /* Can't find it as a long option. If this is not getopt_long_only,
700 or the option starts with '--' or is not a valid short
701 option, then it's an error.
702 Otherwise interpret it as a short option. */
703 if (!long_only || argv[optind][1] == '-'
704 || my_index(optstring, *nextchar) == NULL)
706 if (opterr)
708 if (argv[optind][1] == '-')
709 /* --option */
710 fprintf(stderr, _("%s: unrecognized option `%s%s'\n"),
711 "--", argv[0], nextchar);
712 else
714 char t[2] = { argv[optind][0], '\0' };
715 /* +option or -option */
716 fprintf(stderr, _("%s: unrecognized option `%s%s'\n"),
717 argv[0], t, nextchar);
720 nextchar = (char *) "";
721 optind++;
722 optopt = 0;
723 return '?';
727 /* Look at and handle the next short option-character. */
730 char c = *nextchar++;
731 char *temp = my_index(optstring, c);
733 /* Increment `optind' when we start to process its last character. */
734 if (*nextchar == '\0')
735 ++optind;
737 if (temp == NULL || c == ':')
739 if (opterr)
741 if (posixly_correct)
742 /* 1003.2 specifies the format of this message. */
743 fprintf(stderr, _("%s: illegal option -- %c\n"),
744 argv[0], c);
745 else
746 fprintf(stderr, _("%s: invalid option -- %c\n"),
747 argv[0], c);
749 optopt = c;
750 return '?';
752 /* Convenience. Treat POSIX -W foo same as long option --foo */
753 if (temp[0] == 'W' && temp[1] == ';')
755 char *nameend;
756 const struct option *p;
757 const struct option *pfound = NULL;
758 int exact = 0;
759 int ambig = 0;
760 int indfound = 0;
761 int option_index;
763 /* This is an option that requires an argument. */
764 if (*nextchar != '\0')
766 optarg = nextchar;
767 /* If we end this ARGV-element by taking the rest as an arg,
768 we must advance to the next element now. */
769 optind++;
771 else if (optind == argc)
773 if (opterr)
775 /* 1003.2 specifies the format of this message. */
776 fprintf(stderr, _("%s: option requires an argument -- %c\n"),
777 argv[0], c);
779 optopt = c;
780 if (optstring[0] == ':')
781 c = ':';
782 else
783 c = '?';
784 return c;
786 else
787 /* We already incremented `optind' once;
788 increment it again when taking next ARGV-elt as argument. */
789 optarg = argv[optind++];
791 /* optarg is now the argument, see if it's in the
792 table of longopts. */
794 for (nextchar = nameend = optarg; *nameend && *nameend != '='; nameend++)
795 /* Do nothing. */ ;
797 /* Test all long options for either exact match
798 or abbreviated matches. */
799 for (p = longopts, option_index = 0; p->name; p++, option_index++)
800 if (!strncmp(p->name, nextchar, nameend - nextchar))
802 if ((unsigned int) (nameend - nextchar) == strlen(p->name))
804 /* Exact match found. */
805 pfound = p;
806 indfound = option_index;
807 exact = 1;
808 break;
810 else if (pfound == NULL)
812 /* First nonexact match found. */
813 pfound = p;
814 indfound = option_index;
816 else
817 /* Second or later nonexact match found. */
818 ambig = 1;
820 if (ambig && !exact)
822 if (opterr)
823 fprintf(stderr, _("%s: option `-W %s' is ambiguous\n"),
824 argv[0], argv[optind]);
825 nextchar += strlen(nextchar);
826 optind++;
827 return '?';
829 if (pfound != NULL)
831 option_index = indfound;
832 if (*nameend)
834 /* Don't test has_arg with >, because some C compilers don't
835 allow it to be used on enums. */
836 if (pfound->has_arg)
837 optarg = nameend + 1;
838 else
840 if (opterr)
841 fprintf(stderr, _("\
842 %s: option `-W %s' doesn't allow an argument\n"),
843 argv[0], pfound->name);
845 nextchar += strlen(nextchar);
846 return '?';
849 else if (pfound->has_arg == 1)
851 if (optind < argc)
852 optarg = argv[optind++];
853 else
855 if (opterr)
856 fprintf(stderr,
857 _("%s: option `%s' requires an argument\n"),
858 argv[0], argv[optind - 1]);
859 nextchar += strlen(nextchar);
860 return optstring[0] == ':' ? ':' : '?';
863 nextchar += strlen(nextchar);
864 if (longind != NULL)
865 *longind = option_index;
866 if (pfound->flag)
868 *(pfound->flag) = pfound->val;
869 return 0;
871 return pfound->val;
873 nextchar = NULL;
874 return 'W'; /* Let the application handle it. */
876 if (temp[1] == ':')
878 if (temp[2] == ':')
880 /* This is an option that accepts an argument optionally. */
881 if (*nextchar != '\0')
883 optarg = nextchar;
884 optind++;
886 else
887 optarg = NULL;
888 nextchar = NULL;
890 else
892 /* This is an option that requires an argument. */
893 if (*nextchar != '\0')
895 optarg = nextchar;
896 /* If we end this ARGV-element by taking the rest as an arg,
897 we must advance to the next element now. */
898 optind++;
900 else if (optind == argc)
902 if (opterr)
904 /* 1003.2 specifies the format of this message. */
905 fprintf(stderr,
906 _("%s: option requires an argument -- %c\n"),
907 argv[0], c);
909 optopt = c;
910 if (optstring[0] == ':')
911 c = ':';
912 else
913 c = '?';
915 else
916 /* We already incremented `optind' once;
917 increment it again when taking next ARGV-elt as argument. */
918 optarg = argv[optind++];
919 nextchar = NULL;
922 return c;
927 getopt(argc, argv, optstring)
928 int argc;
929 char *const *argv;
930 const char *optstring;
932 return _getopt_internal(argc, argv, optstring,
933 (const struct option *) 0,
934 (int *) 0,
938 #endif /* Not ELIDE_CODE. */
940 #ifdef TEST
942 /* Compile with -DTEST to make an executable for use in testing
943 the above definition of `getopt'. */
946 main(argc, argv)
947 int argc;
948 char **argv;
950 int c;
951 int digit_optind = 0;
953 while (1)
955 int this_option_optind = optind ? optind : 1;
957 c = getopt(argc, argv, "abc:d:0123456789");
958 if (c == -1)
959 break;
961 switch (c)
963 case '0':
964 case '1':
965 case '2':
966 case '3':
967 case '4':
968 case '5':
969 case '6':
970 case '7':
971 case '8':
972 case '9':
973 if (digit_optind != 0 && digit_optind != this_option_optind)
974 printf("digits occur in two different argv-elements.\n");
975 digit_optind = this_option_optind;
976 printf("option %c\n", c);
977 break;
979 case 'a':
980 printf("option a\n");
981 break;
983 case 'b':
984 printf("option b\n");
985 break;
987 case 'c':
988 printf("option c with value `%s'\n", optarg);
989 break;
991 case '?':
992 break;
994 default:
995 printf("?? getopt returned character code 0%o ??\n", c);
999 if (optind < argc)
1001 printf("non-option ARGV-elements: ");
1002 while (optind < argc)
1003 printf("%s ", argv[optind++]);
1004 printf("\n");
1007 exit(0);
1010 #endif /* TEST */