More copyright/license updates.
[make.git] / getopt.c
blob188440bf799cecac23e4f4b32e9f0e965389e50b
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!
6 Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98
7 Free Software Foundation, Inc.
9 NOTE: The canonical source of this file is maintained with the GNU C Library.
10 Bugs can be reported to bug-glibc@gnu.org.
12 This program is free software; you can redistribute it and/or modify it
13 under the terms of the GNU General Public License as published by the
14 Free Software Foundation; either version 2, or (at your option) any
15 later version.
17 This program 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
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License along with
23 this program; see the file COPYING. If not, write to the Free Software
24 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. */
26 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
27 Ditto for AIX 3.2 and <stdlib.h>. */
28 #ifndef _NO_PROTO
29 # define _NO_PROTO
30 #endif
32 #ifdef HAVE_CONFIG_H
33 # include <config.h>
34 #endif
36 #if !defined __STDC__ || !__STDC__
37 /* This is a separate conditional since some stdc systems
38 reject `defined (const)'. */
39 # ifndef const
40 # define const
41 # endif
42 #endif
44 #include <stdio.h>
46 /* Comment out all this code if we are using the GNU C Library, and are not
47 actually compiling the library itself. This code is part of the GNU C
48 Library, but also included in many other GNU distributions. Compiling
49 and linking in this code is a waste when using the GNU C library
50 (especially if it is a shared library). Rather than having every GNU
51 program understand `configure --with-gnu-libc' and omit the object files,
52 it is simpler to just do this in the source for each such file. */
54 #define GETOPT_INTERFACE_VERSION 2
55 #if !defined _LIBC && defined __GLIBC__ && __GLIBC__ >= 2
56 # include <gnu-versions.h>
57 # if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION
58 # define ELIDE_CODE
59 # endif
60 #endif
62 #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 # endif
79 #endif
81 /* This is for other GNU distributions with internationalized messages.
82 When compiling libc, the _ macro is predefined. */
83 #include "gettext.h"
84 #define _(msgid) gettext (msgid)
87 /* This version of `getopt' appears to the caller like standard Unix `getopt'
88 but it behaves differently for the user, since it allows the user
89 to intersperse the options with the other arguments.
91 As `getopt' works, it permutes the elements of ARGV so that,
92 when it is done, all the options precede everything else. Thus
93 all application programs are extended to handle flexible argument order.
95 Setting the environment variable POSIXLY_CORRECT disables permutation.
96 Then the behavior is completely standard.
98 GNU application programs can use a third alternative mode in which
99 they can distinguish the relative order of options and other arguments. */
101 #include "getopt.h"
103 /* For communication from `getopt' to the caller.
104 When `getopt' finds an option that takes an argument,
105 the argument value is returned here.
106 Also, when `ordering' is RETURN_IN_ORDER,
107 each non-option ARGV-element is returned here. */
109 char *optarg = NULL;
111 /* Index in ARGV of the next element to be scanned.
112 This is used for communication to and from the caller
113 and for communication between successive calls to `getopt'.
115 On entry to `getopt', zero means this is the first call; initialize.
117 When `getopt' returns -1, this is the index of the first of the
118 non-option elements that the caller should itself scan.
120 Otherwise, `optind' communicates from one call to the next
121 how much of ARGV has been scanned so far. */
123 /* 1003.2 says this must be 1 before any call. */
124 int optind = 1;
126 /* Formerly, initialization of getopt depended on optind==0, which
127 causes problems with re-calling getopt as programs generally don't
128 know that. */
130 int __getopt_initialized = 0;
132 /* The next char to be scanned in the option-element
133 in which the last option character we returned was found.
134 This allows us to pick up the scan where we left off.
136 If this is zero, or a null string, it means resume the scan
137 by advancing to the next ARGV-element. */
139 static char *nextchar;
141 /* Callers store zero here to inhibit the error message
142 for unrecognized options. */
144 int opterr = 1;
146 /* Set to an option character which was unrecognized.
147 This must be initialized on some systems to avoid linking in the
148 system's own getopt implementation. */
150 int optopt = '?';
152 /* Describe how to deal with options that follow non-option ARGV-elements.
154 If the caller did not specify anything,
155 the default is REQUIRE_ORDER if the environment variable
156 POSIXLY_CORRECT is defined, PERMUTE otherwise.
158 REQUIRE_ORDER means don't recognize them as options;
159 stop option processing when the first non-option is seen.
160 This is what Unix does.
161 This mode of operation is selected by either setting the environment
162 variable POSIXLY_CORRECT, or using `+' as the first character
163 of the list of option characters.
165 PERMUTE is the default. We permute the contents of ARGV as we scan,
166 so that eventually all the non-options are at the end. This allows options
167 to be given in any order, even with programs that were not written to
168 expect this.
170 RETURN_IN_ORDER is an option available to programs that were written
171 to expect options and other ARGV-elements in any order and that care about
172 the ordering of the two. We describe each non-option ARGV-element
173 as if it were the argument of an option with character code 1.
174 Using `-' as the first character of the list of option characters
175 selects this mode of operation.
177 The special argument `--' forces an end of option-scanning regardless
178 of the value of `ordering'. In the case of RETURN_IN_ORDER, only
179 `--' can cause `getopt' to return -1 with `optind' != ARGC. */
181 static enum
183 REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
184 } ordering;
186 /* Value of POSIXLY_CORRECT environment variable. */
187 static char *posixly_correct;
189 #ifdef __GNU_LIBRARY__
190 /* We want to avoid inclusion of string.h with non-GNU libraries
191 because there are many ways it can cause trouble.
192 On some systems, it contains special magic macros that don't work
193 in GCC. */
194 # include <string.h>
195 # define my_index strchr
196 #else
198 # if HAVE_STRING_H
199 # include <string.h>
200 # else
201 # include <strings.h>
202 # endif
204 /* Avoid depending on library functions or files
205 whose names are inconsistent. */
207 #ifndef getenv
208 extern char *getenv ();
209 #endif
211 static char *
212 my_index (const char *str, int chr)
214 while (*str)
216 if (*str == chr)
217 return (char *) str;
218 str++;
220 return 0;
223 /* If using GCC, we can safely declare strlen this way.
224 If not using GCC, it is ok not to declare it. */
225 #ifdef __GNUC__
226 /* Note that Motorola Delta 68k R3V7 comes with GCC but not stddef.h.
227 That was relevant to code that was here before. */
228 # if (!defined __STDC__ || !__STDC__) && !defined strlen
229 /* gcc with -traditional declares the built-in strlen to return int,
230 and has done so at least since version 2.4.5. -- rms. */
231 extern int strlen (const char *);
232 # endif /* not __STDC__ */
233 #endif /* __GNUC__ */
235 #endif /* not __GNU_LIBRARY__ */
237 /* Handle permutation of arguments. */
239 /* Describe the part of ARGV that contains non-options that have
240 been skipped. `first_nonopt' is the index in ARGV of the first of them;
241 `last_nonopt' is the index after the last of them. */
243 static int first_nonopt;
244 static int last_nonopt;
246 #ifdef _LIBC
247 /* Bash 2.0 gives us an environment variable containing flags
248 indicating ARGV elements that should not be considered arguments. */
250 /* Defined in getopt_init.c */
251 extern char *__getopt_nonoption_flags;
253 static int nonoption_flags_max_len;
254 static int nonoption_flags_len;
256 static int original_argc;
257 static char *const *original_argv;
259 /* Make sure the environment variable bash 2.0 puts in the environment
260 is valid for the getopt call we must make sure that the ARGV passed
261 to getopt is that one passed to the process. */
262 static void __attribute__ ((unused))
263 store_args_and_env (int argc, char *const *argv)
265 /* XXX This is no good solution. We should rather copy the args so
266 that we can compare them later. But we must not use malloc(3). */
267 original_argc = argc;
268 original_argv = argv;
270 # ifdef text_set_element
271 text_set_element (__libc_subinit, store_args_and_env);
272 # endif /* text_set_element */
274 # define SWAP_FLAGS(ch1, ch2) \
275 if (nonoption_flags_len > 0) \
277 char __tmp = __getopt_nonoption_flags[ch1]; \
278 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
279 __getopt_nonoption_flags[ch2] = __tmp; \
281 #else /* !_LIBC */
282 # define SWAP_FLAGS(ch1, ch2)
283 #endif /* _LIBC */
285 /* Exchange two adjacent subsequences of ARGV.
286 One subsequence is elements [first_nonopt,last_nonopt)
287 which contains all the non-options that have been skipped so far.
288 The other is elements [last_nonopt,optind), which contains all
289 the options processed since those non-options were skipped.
291 `first_nonopt' and `last_nonopt' are relocated so that they describe
292 the new indices of the non-options in ARGV after they are moved. */
294 #if defined __STDC__ && __STDC__
295 static void exchange (char **);
296 #endif
298 static void
299 exchange (char **argv)
301 int bottom = first_nonopt;
302 int middle = last_nonopt;
303 int top = optind;
304 char *tem;
306 /* Exchange the shorter segment with the far end of the longer segment.
307 That puts the shorter segment into the right place.
308 It leaves the longer segment in the right place overall,
309 but it consists of two parts that need to be swapped next. */
311 #ifdef _LIBC
312 /* First make sure the handling of the `__getopt_nonoption_flags'
313 string can work normally. Our top argument must be in the range
314 of the string. */
315 if (nonoption_flags_len > 0 && top >= nonoption_flags_max_len)
317 /* We must extend the array. The user plays games with us and
318 presents new arguments. */
319 char *new_str = malloc (top + 1);
320 if (new_str == NULL)
321 nonoption_flags_len = nonoption_flags_max_len = 0;
322 else
324 memset (__mempcpy (new_str, __getopt_nonoption_flags,
325 nonoption_flags_max_len),
326 '\0', top + 1 - nonoption_flags_max_len);
327 nonoption_flags_max_len = top + 1;
328 __getopt_nonoption_flags = new_str;
331 #endif
333 while (top > middle && middle > bottom)
335 if (top - middle > middle - bottom)
337 /* Bottom segment is the short one. */
338 int len = middle - bottom;
339 register int i;
341 /* Swap it with the top part of the top segment. */
342 for (i = 0; i < len; i++)
344 tem = argv[bottom + i];
345 argv[bottom + i] = argv[top - (middle - bottom) + i];
346 argv[top - (middle - bottom) + i] = tem;
347 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
349 /* Exclude the moved bottom segment from further swapping. */
350 top -= len;
352 else
354 /* Top segment is the short one. */
355 int len = top - middle;
356 register int i;
358 /* Swap it with the bottom part of the bottom segment. */
359 for (i = 0; i < len; i++)
361 tem = argv[bottom + i];
362 argv[bottom + i] = argv[middle + i];
363 argv[middle + i] = tem;
364 SWAP_FLAGS (bottom + i, middle + i);
366 /* Exclude the moved top segment from further swapping. */
367 bottom += len;
371 /* Update records for the slots the non-options now occupy. */
373 first_nonopt += (optind - last_nonopt);
374 last_nonopt = optind;
377 /* Initialize the internal data when the first call is made. */
379 #if defined __STDC__ && __STDC__
380 static const char *_getopt_initialize (int, char *const *, const char *);
381 #endif
382 static const char *
383 _getopt_initialize (int argc, char *const *argv, const char *optstring)
385 /* Start processing options with ARGV-element 1 (since ARGV-element 0
386 is the program name); the sequence of previously skipped
387 non-option ARGV-elements is empty. */
389 first_nonopt = last_nonopt = optind;
391 nextchar = NULL;
393 posixly_correct = getenv ("POSIXLY_CORRECT");
395 /* Determine how to handle the ordering of options and nonoptions. */
397 if (optstring[0] == '-')
399 ordering = RETURN_IN_ORDER;
400 ++optstring;
402 else if (optstring[0] == '+')
404 ordering = REQUIRE_ORDER;
405 ++optstring;
407 else if (posixly_correct != NULL)
408 ordering = REQUIRE_ORDER;
409 else
410 ordering = PERMUTE;
412 #ifdef _LIBC
413 if (posixly_correct == NULL
414 && argc == original_argc && argv == original_argv)
416 if (nonoption_flags_max_len == 0)
418 if (__getopt_nonoption_flags == NULL
419 || __getopt_nonoption_flags[0] == '\0')
420 nonoption_flags_max_len = -1;
421 else
423 const char *orig_str = __getopt_nonoption_flags;
424 int len = nonoption_flags_max_len = strlen (orig_str);
425 if (nonoption_flags_max_len < argc)
426 nonoption_flags_max_len = argc;
427 __getopt_nonoption_flags =
428 (char *) malloc (nonoption_flags_max_len);
429 if (__getopt_nonoption_flags == NULL)
430 nonoption_flags_max_len = -1;
431 else
432 memset (__mempcpy (__getopt_nonoption_flags, orig_str, len),
433 '\0', nonoption_flags_max_len - len);
436 nonoption_flags_len = nonoption_flags_max_len;
438 else
439 nonoption_flags_len = 0;
440 #endif
442 return optstring;
445 /* Scan elements of ARGV (whose length is ARGC) for option characters
446 given in OPTSTRING.
448 If an element of ARGV starts with '-', and is not exactly "-" or "--",
449 then it is an option element. The characters of this element
450 (aside from the initial '-') are option characters. If `getopt'
451 is called repeatedly, it returns successively each of the option characters
452 from each of the option elements.
454 If `getopt' finds another option character, it returns that character,
455 updating `optind' and `nextchar' so that the next call to `getopt' can
456 resume the scan with the following option character or ARGV-element.
458 If there are no more option characters, `getopt' returns -1.
459 Then `optind' is the index in ARGV of the first ARGV-element
460 that is not an option. (The ARGV-elements have been permuted
461 so that those that are not options now come last.)
463 OPTSTRING is a string containing the legitimate option characters.
464 If an option character is seen that is not listed in OPTSTRING,
465 return '?' after printing an error message. If you set `opterr' to
466 zero, the error message is suppressed but we still return '?'.
468 If a char in OPTSTRING is followed by a colon, that means it wants an arg,
469 so the following text in the same ARGV-element, or the text of the following
470 ARGV-element, is returned in `optarg'. Two colons mean an option that
471 wants an optional arg; if there is text in the current ARGV-element,
472 it is returned in `optarg', otherwise `optarg' is set to zero.
474 If OPTSTRING starts with `-' or `+', it requests different methods of
475 handling the non-option ARGV-elements.
476 See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
478 Long-named options begin with `--' instead of `-'.
479 Their names may be abbreviated as long as the abbreviation is unique
480 or is an exact match for some defined option. If they have an
481 argument, it follows the option name in the same ARGV-element, separated
482 from the option name by a `=', or else the in next ARGV-element.
483 When `getopt' finds a long-named option, it returns 0 if that option's
484 `flag' field is nonzero, the value of the option's `val' field
485 if the `flag' field is zero.
487 The elements of ARGV aren't really const, because we permute them.
488 But we pretend they're const in the prototype to be compatible
489 with other systems.
491 LONGOPTS is a vector of `struct option' terminated by an
492 element containing a name which is zero.
494 LONGIND returns the index in LONGOPT of the long-named option found.
495 It is only valid when a long-named option has been found by the most
496 recent call.
498 If LONG_ONLY is nonzero, '-' as well as '--' can introduce
499 long-named options. */
502 _getopt_internal (int argc, char *const *argv, const char *optstring,
503 const struct option *longopts, int *longind, int long_only)
505 optarg = NULL;
507 if (optind == 0 || !__getopt_initialized)
509 if (optind == 0)
510 optind = 1; /* Don't scan ARGV[0], the program name. */
511 optstring = _getopt_initialize (argc, argv, optstring);
512 __getopt_initialized = 1;
515 /* Test whether ARGV[optind] points to a non-option argument.
516 Either it does not have option syntax, or there is an environment flag
517 from the shell indicating it is not an option. The later information
518 is only used when the used in the GNU libc. */
519 #ifdef _LIBC
520 # define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0' \
521 || (optind < nonoption_flags_len \
522 && __getopt_nonoption_flags[optind] == '1'))
523 #else
524 # define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0')
525 #endif
527 if (nextchar == NULL || *nextchar == '\0')
529 /* Advance to the next ARGV-element. */
531 /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
532 moved back by the user (who may also have changed the arguments). */
533 if (last_nonopt > optind)
534 last_nonopt = optind;
535 if (first_nonopt > optind)
536 first_nonopt = optind;
538 if (ordering == PERMUTE)
540 /* If we have just processed some options following some non-options,
541 exchange them so that the options come first. */
543 if (first_nonopt != last_nonopt && last_nonopt != optind)
544 exchange ((char **) argv);
545 else if (last_nonopt != optind)
546 first_nonopt = optind;
548 /* Skip any additional non-options
549 and extend the range of non-options previously skipped. */
551 while (optind < argc && NONOPTION_P)
552 optind++;
553 last_nonopt = optind;
556 /* The special ARGV-element `--' means premature end of options.
557 Skip it like a null option,
558 then exchange with previous non-options as if it were an option,
559 then skip everything else like a non-option. */
561 if (optind != argc && !strcmp (argv[optind], "--"))
563 optind++;
565 if (first_nonopt != last_nonopt && last_nonopt != optind)
566 exchange ((char **) argv);
567 else if (first_nonopt == last_nonopt)
568 first_nonopt = optind;
569 last_nonopt = argc;
571 optind = argc;
574 /* If we have done all the ARGV-elements, stop the scan
575 and back over any non-options that we skipped and permuted. */
577 if (optind == argc)
579 /* Set the next-arg-index to point at the non-options
580 that we previously skipped, so the caller will digest them. */
581 if (first_nonopt != last_nonopt)
582 optind = first_nonopt;
583 return -1;
586 /* If we have come to a non-option and did not permute it,
587 either stop the scan or describe it to the caller and pass it by. */
589 if (NONOPTION_P)
591 if (ordering == REQUIRE_ORDER)
592 return -1;
593 optarg = argv[optind++];
594 return 1;
597 /* We have found another option-ARGV-element.
598 Skip the initial punctuation. */
600 nextchar = (argv[optind] + 1
601 + (longopts != NULL && argv[optind][1] == '-'));
604 /* Decode the current option-ARGV-element. */
606 /* Check whether the ARGV-element is a long option.
608 If long_only and the ARGV-element has the form "-f", where f is
609 a valid short option, don't consider it an abbreviated form of
610 a long option that starts with f. Otherwise there would be no
611 way to give the -f short option.
613 On the other hand, if there's a long option "fubar" and
614 the ARGV-element is "-fu", do consider that an abbreviation of
615 the long option, just like "--fu", and not "-f" with arg "u".
617 This distinction seems to be the most useful approach. */
619 if (longopts != NULL
620 && (argv[optind][1] == '-'
621 || (long_only && (argv[optind][2] || !my_index (optstring, argv[optind][1])))))
623 char *nameend;
624 const struct option *p;
625 const struct option *pfound = NULL;
626 int exact = 0;
627 int ambig = 0;
628 int indfound = -1;
629 int option_index;
631 for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
632 /* Do nothing. */ ;
634 /* Test all long options for either exact match
635 or abbreviated matches. */
636 for (p = longopts, option_index = 0; p->name; p++, option_index++)
637 if (!strncmp (p->name, nextchar, nameend - nextchar))
639 if ((unsigned int) (nameend - nextchar)
640 == (unsigned int) strlen (p->name))
642 /* Exact match found. */
643 pfound = p;
644 indfound = option_index;
645 exact = 1;
646 break;
648 else if (pfound == NULL)
650 /* First nonexact match found. */
651 pfound = p;
652 indfound = option_index;
654 else
655 /* Second or later nonexact match found. */
656 ambig = 1;
659 if (ambig && !exact)
661 if (opterr)
662 fprintf (stderr, _("%s: option `%s' is ambiguous\n"),
663 argv[0], argv[optind]);
664 nextchar += strlen (nextchar);
665 optind++;
666 optopt = 0;
667 return '?';
670 if (pfound != NULL)
672 option_index = indfound;
673 optind++;
674 if (*nameend)
676 /* Don't test has_arg with >, because some C compilers don't
677 allow it to be used on enums. */
678 if (pfound->has_arg)
679 optarg = nameend + 1;
680 else
682 if (opterr)
683 if (argv[optind - 1][1] == '-')
684 /* --option */
685 fprintf (stderr,
686 _("%s: option `--%s' doesn't allow an argument\n"),
687 argv[0], pfound->name);
688 else
689 /* +option or -option */
690 fprintf (stderr,
691 _("%s: option `%c%s' doesn't allow an argument\n"),
692 argv[0], argv[optind - 1][0], pfound->name);
694 nextchar += strlen (nextchar);
696 optopt = pfound->val;
697 return '?';
700 else if (pfound->has_arg == 1)
702 if (optind < argc)
703 optarg = argv[optind++];
704 else
706 if (opterr)
707 fprintf (stderr,
708 _("%s: option `%s' requires an argument\n"),
709 argv[0], argv[optind - 1]);
710 nextchar += strlen (nextchar);
711 optopt = pfound->val;
712 return optstring[0] == ':' ? ':' : '?';
715 nextchar += strlen (nextchar);
716 if (longind != NULL)
717 *longind = option_index;
718 if (pfound->flag)
720 *(pfound->flag) = pfound->val;
721 return 0;
723 return pfound->val;
726 /* Can't find it as a long option. If this is not getopt_long_only,
727 or the option starts with '--' or is not a valid short
728 option, then it's an error.
729 Otherwise interpret it as a short option. */
730 if (!long_only || argv[optind][1] == '-'
731 || my_index (optstring, *nextchar) == NULL)
733 if (opterr)
735 if (argv[optind][1] == '-')
736 /* --option */
737 fprintf (stderr, _("%s: unrecognized option `--%s'\n"),
738 argv[0], nextchar);
739 else
740 /* +option or -option */
741 fprintf (stderr, _("%s: unrecognized option `%c%s'\n"),
742 argv[0], argv[optind][0], nextchar);
744 nextchar = (char *) "";
745 optind++;
746 optopt = 0;
747 return '?';
751 /* Look at and handle the next short option-character. */
754 char c = *nextchar++;
755 char *temp = my_index (optstring, c);
757 /* Increment `optind' when we start to process its last character. */
758 if (*nextchar == '\0')
759 ++optind;
761 if (temp == NULL || c == ':')
763 if (opterr)
765 if (posixly_correct)
766 /* 1003.2 specifies the format of this message. */
767 fprintf (stderr, _("%s: illegal option -- %c\n"),
768 argv[0], c);
769 else
770 fprintf (stderr, _("%s: invalid option -- %c\n"),
771 argv[0], c);
773 optopt = c;
774 return '?';
776 /* Convenience. Treat POSIX -W foo same as long option --foo */
777 if (temp[0] == 'W' && temp[1] == ';')
779 char *nameend;
780 const struct option *p;
781 const struct option *pfound = NULL;
782 int exact = 0;
783 int ambig = 0;
784 int indfound = 0;
785 int option_index;
787 /* This is an option that requires an argument. */
788 if (*nextchar != '\0')
790 optarg = nextchar;
791 /* If we end this ARGV-element by taking the rest as an arg,
792 we must advance to the next element now. */
793 optind++;
795 else if (optind == argc)
797 if (opterr)
799 /* 1003.2 specifies the format of this message. */
800 fprintf (stderr, _("%s: option requires an argument -- %c\n"),
801 argv[0], c);
803 optopt = c;
804 if (optstring[0] == ':')
805 c = ':';
806 else
807 c = '?';
808 return c;
810 else
811 /* We already incremented `optind' once;
812 increment it again when taking next ARGV-elt as argument. */
813 optarg = argv[optind++];
815 /* optarg is now the argument, see if it's in the
816 table of longopts. */
818 for (nextchar = nameend = optarg; *nameend && *nameend != '='; nameend++)
819 /* Do nothing. */ ;
821 /* Test all long options for either exact match
822 or abbreviated matches. */
823 for (p = longopts, option_index = 0; p->name; p++, option_index++)
824 if (!strncmp (p->name, nextchar, nameend - nextchar))
826 if ((unsigned int) (nameend - nextchar) == strlen (p->name))
828 /* Exact match found. */
829 pfound = p;
830 indfound = option_index;
831 exact = 1;
832 break;
834 else if (pfound == NULL)
836 /* First nonexact match found. */
837 pfound = p;
838 indfound = option_index;
840 else
841 /* Second or later nonexact match found. */
842 ambig = 1;
844 if (ambig && !exact)
846 if (opterr)
847 fprintf (stderr, _("%s: option `-W %s' is ambiguous\n"),
848 argv[0], argv[optind]);
849 nextchar += strlen (nextchar);
850 optind++;
851 return '?';
853 if (pfound != NULL)
855 option_index = indfound;
856 if (*nameend)
858 /* Don't test has_arg with >, because some C compilers don't
859 allow it to be used on enums. */
860 if (pfound->has_arg)
861 optarg = nameend + 1;
862 else
864 if (opterr)
865 fprintf (stderr, _("\
866 %s: option `-W %s' doesn't allow an argument\n"),
867 argv[0], pfound->name);
869 nextchar += strlen (nextchar);
870 return '?';
873 else if (pfound->has_arg == 1)
875 if (optind < argc)
876 optarg = argv[optind++];
877 else
879 if (opterr)
880 fprintf (stderr,
881 _("%s: option `%s' requires an argument\n"),
882 argv[0], argv[optind - 1]);
883 nextchar += strlen (nextchar);
884 return optstring[0] == ':' ? ':' : '?';
887 nextchar += strlen (nextchar);
888 if (longind != NULL)
889 *longind = option_index;
890 if (pfound->flag)
892 *(pfound->flag) = pfound->val;
893 return 0;
895 return pfound->val;
897 nextchar = NULL;
898 return 'W'; /* Let the application handle it. */
900 if (temp[1] == ':')
902 if (temp[2] == ':')
904 /* This is an option that accepts an argument optionally. */
905 if (*nextchar != '\0')
907 optarg = nextchar;
908 optind++;
910 else
911 optarg = NULL;
912 nextchar = NULL;
914 else
916 /* This is an option that requires an argument. */
917 if (*nextchar != '\0')
919 optarg = nextchar;
920 /* If we end this ARGV-element by taking the rest as an arg,
921 we must advance to the next element now. */
922 optind++;
924 else if (optind == argc)
926 if (opterr)
928 /* 1003.2 specifies the format of this message. */
929 fprintf (stderr,
930 _("%s: option requires an argument -- %c\n"),
931 argv[0], c);
933 optopt = c;
934 if (optstring[0] == ':')
935 c = ':';
936 else
937 c = '?';
939 else
940 /* We already incremented `optind' once;
941 increment it again when taking next ARGV-elt as argument. */
942 optarg = argv[optind++];
943 nextchar = NULL;
946 return c;
951 getopt (int argc, char *const *argv, const char *optstring)
953 return _getopt_internal (argc, argv, optstring,
954 (const struct option *) 0,
955 (int *) 0,
959 #endif /* Not ELIDE_CODE. */
961 #ifdef TEST
963 /* Compile with -DTEST to make an executable for use in testing
964 the above definition of `getopt'. */
967 main (int argc, char **argv)
969 int c;
970 int digit_optind = 0;
972 while (1)
974 int this_option_optind = optind ? optind : 1;
976 c = getopt (argc, argv, "abc:d:0123456789");
977 if (c == -1)
978 break;
980 switch (c)
982 case '0':
983 case '1':
984 case '2':
985 case '3':
986 case '4':
987 case '5':
988 case '6':
989 case '7':
990 case '8':
991 case '9':
992 if (digit_optind != 0 && digit_optind != this_option_optind)
993 printf ("digits occur in two different argv-elements.\n");
994 digit_optind = this_option_optind;
995 printf ("option %c\n", c);
996 break;
998 case 'a':
999 printf ("option a\n");
1000 break;
1002 case 'b':
1003 printf ("option b\n");
1004 break;
1006 case 'c':
1007 printf ("option c with value `%s'\n", optarg);
1008 break;
1010 case '?':
1011 break;
1013 default:
1014 printf ("?? getopt returned character code 0%o ??\n", c);
1018 if (optind < argc)
1020 printf ("non-option ARGV-elements: ");
1021 while (optind < argc)
1022 printf ("%s ", argv[optind++]);
1023 printf ("\n");
1026 exit (0);
1029 #endif /* TEST */