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
5 Copyright (C) 1987,88,89,90,91,92,93,94,95,96,98,99,2000,2001,2002
6 Free Software Foundation, Inc.
7 This file is part of the GNU C Library.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2, or (at your option)
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License along
20 with this program; if not, write to the Free Software Foundation,
21 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
23 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
24 Ditto for AIX 3.2 and <stdlib.h>. */
33 #if !defined __STDC__ || !__STDC__
34 /* This is a separate conditional since some stdc systems
35 reject `defined (const)'. */
43 /* Comment out all this code if we are using the GNU C Library, and are not
44 actually compiling the library itself. This code is part of the GNU C
45 Library, but also included in many other GNU distributions. Compiling
46 and linking in this code is a waste when using the GNU C library
47 (especially if it is a shared library). Rather than having every GNU
48 program understand `configure --with-gnu-libc' and omit the object files,
49 it is simpler to just do this in the source for each such file. */
51 #define GETOPT_INTERFACE_VERSION 2
52 #if !defined _LIBC && defined __GLIBC__ && __GLIBC__ >= 2
53 # include <gnu-versions.h>
54 # if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION
62 /* This needs to come after some library #include
63 to get __GNU_LIBRARY__ defined. */
64 #ifdef __GNU_LIBRARY__
65 /* Don't include stdlib.h for non-GNU C libraries because some of them
66 contain conflicting prototypes for getopt. */
69 #endif /* GNU C library. */
73 # if HAVE_STRING_H - 0
80 #endif /* HAVE_LIBINTL_H */
85 # else /* not #ifdef _LIBC */
86 /* This is for other GNU distributions with internationalized messages. */
88 # endif /* end #ifdef _LIBC */
89 #endif /* end #if 0 */
92 /* Should I include libintl.h here as in regex.c ? */
93 # define _(msgid) gettext (msgid)
94 #else /* not #if HAVE_LIBINTL_H */
95 # define _(msgid) (msgid)
96 #endif /* end #if HAVE_LIBINTL_H */
98 #if defined _LIBC && defined USE_IN_LIBIO
102 #ifndef attribute_hidden
103 # define attribute_hidden
106 /* This version of `getopt' appears to the caller like standard Unix `getopt'
107 but it behaves differently for the user, since it allows the user
108 to intersperse the options with the other arguments.
110 As `getopt' works, it permutes the elements of ARGV so that,
111 when it is done, all the options precede everything else. Thus
112 all application programs are extended to handle flexible argument order.
114 Setting the environment variable POSIXLY_CORRECT disables permutation.
115 Then the behavior is completely standard.
117 GNU application programs can use a third alternative mode in which
118 they can distinguish the relative order of options and other arguments. */
122 /* For communication from `getopt' to the caller.
123 When `getopt' finds an option that takes an argument,
124 the argument value is returned here.
125 Also, when `ordering' is RETURN_IN_ORDER,
126 each non-option ARGV-element is returned here. */
130 /* Index in ARGV of the next element to be scanned.
131 This is used for communication to and from the caller
132 and for communication between successive calls to `getopt'.
134 On entry to `getopt', zero means this is the first call; initialize.
136 When `getopt' returns -1, this is the index of the first of the
137 non-option elements that the caller should itself scan.
139 Otherwise, `optind' communicates from one call to the next
140 how much of ARGV has been scanned so far. */
142 /* 1003.2 says this must be 1 before any call. */
145 /* Formerly, initialization of getopt depended on optind==0, which
146 causes problems with re-calling getopt as programs generally don't
149 int __getopt_initialized attribute_hidden
;
151 /* The next char to be scanned in the option-element
152 in which the last option character we returned was found.
153 This allows us to pick up the scan where we left off.
155 If this is zero, or a null string, it means resume the scan
156 by advancing to the next ARGV-element. */
158 static char *nextchar
;
160 /* Callers store zero here to inhibit the error message
161 for unrecognized options. */
165 /* Set to an option character which was unrecognized.
166 This must be initialized on some systems to avoid linking in the
167 system's own getopt implementation. */
171 /* Describe how to deal with options that follow non-option ARGV-elements.
173 If the caller did not specify anything,
174 the default is REQUIRE_ORDER if the environment variable
175 POSIXLY_CORRECT is defined, PERMUTE otherwise.
177 REQUIRE_ORDER means don't recognize them as options;
178 stop option processing when the first non-option is seen.
179 This is what Unix does.
180 This mode of operation is selected by either setting the environment
181 variable POSIXLY_CORRECT, or using `+' as the first character
182 of the list of option characters.
184 PERMUTE is the default. We permute the contents of ARGV as we scan,
185 so that eventually all the non-options are at the end. This allows options
186 to be given in any order, even with programs that were not written to
189 RETURN_IN_ORDER is an option available to programs that were written
190 to expect options and other ARGV-elements in any order and that care about
191 the ordering of the two. We describe each non-option ARGV-element
192 as if it were the argument of an option with character code 1.
193 Using `-' as the first character of the list of option characters
194 selects this mode of operation.
196 The special argument `--' forces an end of option-scanning regardless
197 of the value of `ordering'. In the case of RETURN_IN_ORDER, only
198 `--' can cause `getopt' to return -1 with `optind' != ARGC. */
202 REQUIRE_ORDER
, PERMUTE
, RETURN_IN_ORDER
205 /* Value of POSIXLY_CORRECT environment variable. */
206 static char *posixly_correct
;
208 #ifdef __GNU_LIBRARY__
209 /* We want to avoid inclusion of string.h with non-GNU libraries
210 because there are many ways it can cause trouble.
211 On some systems, it contains special magic macros that don't work
214 # define my_index strchr
220 # include <strings.h>
223 /* Avoid depending on library functions or files
224 whose names are inconsistent. */
227 extern char *getenv ();
244 /* If using GCC, we can safely declare strlen this way.
245 If not using GCC, it is ok not to declare it. */
247 /* Note that Motorola Delta 68k R3V7 comes with GCC but not stddef.h.
248 That was relevant to code that was here before. */
249 # if (!defined __STDC__ || !__STDC__) && !defined strlen
250 /* gcc with -traditional declares the built-in strlen to return int,
251 and has done so at least since version 2.4.5. -- rms. */
252 extern int strlen (const char *);
253 # endif /* not __STDC__ */
254 #endif /* __GNUC__ */
256 #endif /* not __GNU_LIBRARY__ */
258 /* Handle permutation of arguments. */
260 /* Describe the part of ARGV that contains non-options that have
261 been skipped. `first_nonopt' is the index in ARGV of the first of them;
262 `last_nonopt' is the index after the last of them. */
264 static int first_nonopt
;
265 static int last_nonopt
;
268 /* Stored original parameters.
269 XXX This is no good solution. We should rather copy the args so
270 that we can compare them later. But we must not use malloc(3). */
271 extern int __libc_argc
;
272 extern char **__libc_argv
;
274 /* Bash 2.0 gives us an environment variable containing flags
275 indicating ARGV elements that should not be considered arguments. */
277 # ifdef USE_NONOPTION_FLAGS
278 /* Defined in getopt_init.c */
279 extern char *__getopt_nonoption_flags
;
281 static int nonoption_flags_max_len
;
282 static int nonoption_flags_len
;
285 # ifdef USE_NONOPTION_FLAGS
286 # define SWAP_FLAGS(ch1, ch2) \
287 if (nonoption_flags_len > 0) \
289 char __tmp = __getopt_nonoption_flags[ch1]; \
290 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
291 __getopt_nonoption_flags[ch2] = __tmp; \
294 # define SWAP_FLAGS(ch1, ch2)
297 # define SWAP_FLAGS(ch1, ch2)
300 /* Exchange two adjacent subsequences of ARGV.
301 One subsequence is elements [first_nonopt,last_nonopt)
302 which contains all the non-options that have been skipped so far.
303 The other is elements [last_nonopt,optind), which contains all
304 the options processed since those non-options were skipped.
306 `first_nonopt' and `last_nonopt' are relocated so that they describe
307 the new indices of the non-options in ARGV after they are moved. */
309 #if defined __STDC__ && __STDC__
310 static void exchange (char **);
317 int bottom
= first_nonopt
;
318 int middle
= last_nonopt
;
322 /* Exchange the shorter segment with the far end of the longer segment.
323 That puts the shorter segment into the right place.
324 It leaves the longer segment in the right place overall,
325 but it consists of two parts that need to be swapped next. */
327 #if defined _LIBC && defined USE_NONOPTION_FLAGS
328 /* First make sure the handling of the `__getopt_nonoption_flags'
329 string can work normally. Our top argument must be in the range
331 if (nonoption_flags_len
> 0 && top
>= nonoption_flags_max_len
)
333 /* We must extend the array. The user plays games with us and
334 presents new arguments. */
335 char *new_str
= malloc (top
+ 1);
337 nonoption_flags_len
= nonoption_flags_max_len
= 0;
340 memset (__mempcpy (new_str
, __getopt_nonoption_flags
,
341 nonoption_flags_max_len
),
342 '\0', top
+ 1 - nonoption_flags_max_len
);
343 nonoption_flags_max_len
= top
+ 1;
344 __getopt_nonoption_flags
= new_str
;
349 while (top
> middle
&& middle
> bottom
)
351 if (top
- middle
> middle
- bottom
)
353 /* Bottom segment is the short one. */
354 int len
= middle
- bottom
;
357 /* Swap it with the top part of the top segment. */
358 for (i
= 0; i
< len
; i
++)
360 tem
= argv
[bottom
+ i
];
361 argv
[bottom
+ i
] = argv
[top
- (middle
- bottom
) + i
];
362 argv
[top
- (middle
- bottom
) + i
] = tem
;
363 SWAP_FLAGS (bottom
+ i
, top
- (middle
- bottom
) + i
);
365 /* Exclude the moved bottom segment from further swapping. */
370 /* Top segment is the short one. */
371 int len
= top
- middle
;
374 /* Swap it with the bottom part of the bottom segment. */
375 for (i
= 0; i
< len
; i
++)
377 tem
= argv
[bottom
+ i
];
378 argv
[bottom
+ i
] = argv
[middle
+ i
];
379 argv
[middle
+ i
] = tem
;
380 SWAP_FLAGS (bottom
+ i
, middle
+ i
);
382 /* Exclude the moved top segment from further swapping. */
387 /* Update records for the slots the non-options now occupy. */
389 first_nonopt
+= (optind
- last_nonopt
);
390 last_nonopt
= optind
;
393 /* Initialize the internal data when the first call is made. */
395 #if defined __STDC__ && __STDC__
396 static const char *_getopt_initialize (int, char *const *, const char *);
399 _getopt_initialize (argc
, argv
, optstring
)
402 const char *optstring
;
404 /* Start processing options with ARGV-element 1 (since ARGV-element 0
405 is the program name); the sequence of previously skipped
406 non-option ARGV-elements is empty. */
408 first_nonopt
= last_nonopt
= optind
;
412 posixly_correct
= getenv ("POSIXLY_CORRECT");
414 /* Determine how to handle the ordering of options and nonoptions. */
416 if (optstring
[0] == '-')
418 ordering
= RETURN_IN_ORDER
;
421 else if (optstring
[0] == '+')
423 ordering
= REQUIRE_ORDER
;
426 else if (posixly_correct
!= NULL
)
427 ordering
= REQUIRE_ORDER
;
431 #if defined _LIBC && defined USE_NONOPTION_FLAGS
432 if (posixly_correct
== NULL
433 && argc
== __libc_argc
&& argv
== __libc_argv
)
435 if (nonoption_flags_max_len
== 0)
437 if (__getopt_nonoption_flags
== NULL
438 || __getopt_nonoption_flags
[0] == '\0')
439 nonoption_flags_max_len
= -1;
442 const char *orig_str
= __getopt_nonoption_flags
;
443 int len
= nonoption_flags_max_len
= strlen (orig_str
);
444 if (nonoption_flags_max_len
< argc
)
445 nonoption_flags_max_len
= argc
;
446 __getopt_nonoption_flags
=
447 (char *) malloc (nonoption_flags_max_len
);
448 if (__getopt_nonoption_flags
== NULL
)
449 nonoption_flags_max_len
= -1;
451 memset (__mempcpy (__getopt_nonoption_flags
, orig_str
, len
),
452 '\0', nonoption_flags_max_len
- len
);
455 nonoption_flags_len
= nonoption_flags_max_len
;
458 nonoption_flags_len
= 0;
464 /* Scan elements of ARGV (whose length is ARGC) for option characters
467 If an element of ARGV starts with '-', and is not exactly "-" or "--",
468 then it is an option element. The characters of this element
469 (aside from the initial '-') are option characters. If `getopt'
470 is called repeatedly, it returns successively each of the option characters
471 from each of the option elements.
473 If `getopt' finds another option character, it returns that character,
474 updating `optind' and `nextchar' so that the next call to `getopt' can
475 resume the scan with the following option character or ARGV-element.
477 If there are no more option characters, `getopt' returns -1.
478 Then `optind' is the index in ARGV of the first ARGV-element
479 that is not an option. (The ARGV-elements have been permuted
480 so that those that are not options now come last.)
482 OPTSTRING is a string containing the legitimate option characters.
483 If an option character is seen that is not listed in OPTSTRING,
484 return '?' after printing an error message. If you set `opterr' to
485 zero, the error message is suppressed but we still return '?'.
487 If a char in OPTSTRING is followed by a colon, that means it wants an arg,
488 so the following text in the same ARGV-element, or the text of the following
489 ARGV-element, is returned in `optarg'. Two colons mean an option that
490 wants an optional arg; if there is text in the current ARGV-element,
491 it is returned in `optarg', otherwise `optarg' is set to zero.
493 If OPTSTRING starts with `-' or `+', it requests different methods of
494 handling the non-option ARGV-elements.
495 See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
497 Long-named options begin with `--' instead of `-'.
498 Their names may be abbreviated as long as the abbreviation is unique
499 or is an exact match for some defined option. If they have an
500 argument, it follows the option name in the same ARGV-element, separated
501 from the option name by a `=', or else the in next ARGV-element.
502 When `getopt' finds a long-named option, it returns 0 if that option's
503 `flag' field is nonzero, the value of the option's `val' field
504 if the `flag' field is zero.
506 The elements of ARGV aren't really const, because we permute them.
507 But we pretend they're const in the prototype to be compatible
510 LONGOPTS is a vector of `struct option' terminated by an
511 element containing a name which is zero.
513 LONGIND returns the index in LONGOPT of the long-named option found.
514 It is only valid when a long-named option has been found by the most
517 If LONG_ONLY is nonzero, '-' as well as '--' can introduce
518 long-named options. */
521 _getopt_internal (argc
, argv
, optstring
, longopts
, longind
, long_only
)
524 const char *optstring
;
525 const struct option
*longopts
;
529 int print_errors
= opterr
;
530 if (optstring
[0] == ':')
538 if (optind
== 0 || !__getopt_initialized
)
541 optind
= 1; /* Don't scan ARGV[0], the program name. */
542 optstring
= _getopt_initialize (argc
, argv
, optstring
);
543 __getopt_initialized
= 1;
546 /* Test whether ARGV[optind] points to a non-option argument.
547 Either it does not have option syntax, or there is an environment flag
548 from the shell indicating it is not an option. The later information
549 is only used when the used in the GNU libc. */
550 #if defined _LIBC && defined USE_NONOPTION_FLAGS
551 # define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0' \
552 || (optind < nonoption_flags_len \
553 && __getopt_nonoption_flags[optind] == '1'))
555 # define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0')
558 if (nextchar
== NULL
|| *nextchar
== '\0')
560 /* Advance to the next ARGV-element. */
562 /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
563 moved back by the user (who may also have changed the arguments). */
564 if (last_nonopt
> optind
)
565 last_nonopt
= optind
;
566 if (first_nonopt
> optind
)
567 first_nonopt
= optind
;
569 if (ordering
== PERMUTE
)
571 /* If we have just processed some options following some non-options,
572 exchange them so that the options come first. */
574 if (first_nonopt
!= last_nonopt
&& last_nonopt
!= optind
)
575 exchange ((char **) argv
);
576 else if (last_nonopt
!= optind
)
577 first_nonopt
= optind
;
579 /* Skip any additional non-options
580 and extend the range of non-options previously skipped. */
582 while (optind
< argc
&& NONOPTION_P
)
584 last_nonopt
= optind
;
587 /* The special ARGV-element `--' means premature end of options.
588 Skip it like a null option,
589 then exchange with previous non-options as if it were an option,
590 then skip everything else like a non-option. */
592 if (optind
!= argc
&& !strcmp (argv
[optind
], "--"))
596 if (first_nonopt
!= last_nonopt
&& last_nonopt
!= optind
)
597 exchange ((char **) argv
);
598 else if (first_nonopt
== last_nonopt
)
599 first_nonopt
= optind
;
605 /* If we have done all the ARGV-elements, stop the scan
606 and back over any non-options that we skipped and permuted. */
610 /* Set the next-arg-index to point at the non-options
611 that we previously skipped, so the caller will digest them. */
612 if (first_nonopt
!= last_nonopt
)
613 optind
= first_nonopt
;
617 /* If we have come to a non-option and did not permute it,
618 either stop the scan or describe it to the caller and pass it by. */
622 if (ordering
== REQUIRE_ORDER
)
624 optarg
= argv
[optind
++];
628 /* We have found another option-ARGV-element.
629 Skip the initial punctuation. */
631 nextchar
= (argv
[optind
] + 1
632 + (longopts
!= NULL
&& argv
[optind
][1] == '-'));
635 /* Decode the current option-ARGV-element. */
637 /* Check whether the ARGV-element is a long option.
639 If long_only and the ARGV-element has the form "-f", where f is
640 a valid short option, don't consider it an abbreviated form of
641 a long option that starts with f. Otherwise there would be no
642 way to give the -f short option.
644 On the other hand, if there's a long option "fubar" and
645 the ARGV-element is "-fu", do consider that an abbreviation of
646 the long option, just like "--fu", and not "-f" with arg "u".
648 This distinction seems to be the most useful approach. */
651 && (argv
[optind
][1] == '-'
652 || (long_only
&& (argv
[optind
][2] || !my_index (optstring
, argv
[optind
][1])))))
655 const struct option
*p
;
656 const struct option
*pfound
= NULL
;
662 for (nameend
= nextchar
; *nameend
&& *nameend
!= '='; nameend
++)
665 /* Test all long options for either exact match
666 or abbreviated matches. */
667 for (p
= longopts
, option_index
= 0; p
->name
; p
++, option_index
++)
668 if (!strncmp (p
->name
, nextchar
, nameend
- nextchar
))
670 if ((unsigned int) (nameend
- nextchar
)
671 == (unsigned int) strlen (p
->name
))
673 /* Exact match found. */
675 indfound
= option_index
;
679 else if (pfound
== NULL
)
681 /* First nonexact match found. */
683 indfound
= option_index
;
686 || pfound
->has_arg
!= p
->has_arg
687 || pfound
->flag
!= p
->flag
688 || pfound
->val
!= p
->val
)
689 /* Second or later nonexact match found. */
697 #if defined _LIBC && defined USE_IN_LIBIO
700 if (__asprintf (&buf
, _("%s: option `%s' is ambiguous\n"),
701 argv
[0], argv
[optind
]) >= 0)
704 if (_IO_fwide (stderr
, 0) > 0)
705 __fwprintf (stderr
, L
"%s", buf
);
712 fprintf (stderr
, _("%s: option `%s' is ambiguous\n"),
713 argv
[0], argv
[optind
]);
716 nextchar
+= strlen (nextchar
);
724 option_index
= indfound
;
728 /* Don't test has_arg with >, because some C compilers don't
729 allow it to be used on enums. */
731 optarg
= nameend
+ 1;
736 #if defined _LIBC && defined USE_IN_LIBIO
741 if (argv
[optind
- 1][1] == '-')
744 #if defined _LIBC && defined USE_IN_LIBIO
745 n
= __asprintf (&buf
, _("\
746 %s: option `--%s' doesn't allow an argument\n"),
747 argv
[0], pfound
->name
);
749 fprintf (stderr
, _("\
750 %s: option `--%s' doesn't allow an argument\n"),
751 argv
[0], pfound
->name
);
756 /* +option or -option */
757 #if defined _LIBC && defined USE_IN_LIBIO
758 n
= __asprintf (&buf
, _("\
759 %s: option `%c%s' doesn't allow an argument\n"),
760 argv
[0], argv
[optind
- 1][0],
763 fprintf (stderr
, _("\
764 %s: option `%c%s' doesn't allow an argument\n"),
765 argv
[0], argv
[optind
- 1][0], pfound
->name
);
769 #if defined _LIBC && defined USE_IN_LIBIO
772 if (_IO_fwide (stderr
, 0) > 0)
773 __fwprintf (stderr
, L
"%s", buf
);
782 nextchar
+= strlen (nextchar
);
784 optopt
= pfound
->val
;
788 else if (pfound
->has_arg
== 1)
791 optarg
= argv
[optind
++];
796 #if defined _LIBC && defined USE_IN_LIBIO
799 if (__asprintf (&buf
, _("\
800 %s: option `%s' requires an argument\n"),
801 argv
[0], argv
[optind
- 1]) >= 0)
803 if (_IO_fwide (stderr
, 0) > 0)
804 __fwprintf (stderr
, L
"%s", buf
);
812 _("%s: option `%s' requires an argument\n"),
813 argv
[0], argv
[optind
- 1]);
816 nextchar
+= strlen (nextchar
);
817 optopt
= pfound
->val
;
818 return optstring
[0] == ':' ? ':' : '?';
821 nextchar
+= strlen (nextchar
);
823 *longind
= option_index
;
826 *(pfound
->flag
) = pfound
->val
;
832 /* Can't find it as a long option. If this is not getopt_long_only,
833 or the option starts with '--' or is not a valid short
834 option, then it's an error.
835 Otherwise interpret it as a short option. */
836 if (!long_only
|| argv
[optind
][1] == '-'
837 || my_index (optstring
, *nextchar
) == NULL
)
841 #if defined _LIBC && defined USE_IN_LIBIO
846 if (argv
[optind
][1] == '-')
849 #if defined _LIBC && defined USE_IN_LIBIO
850 n
= __asprintf (&buf
, _("%s: unrecognized option `--%s'\n"),
853 fprintf (stderr
, _("%s: unrecognized option `--%s'\n"),
859 /* +option or -option */
860 #if defined _LIBC && defined USE_IN_LIBIO
861 n
= __asprintf (&buf
, _("%s: unrecognized option `%c%s'\n"),
862 argv
[0], argv
[optind
][0], nextchar
);
864 fprintf (stderr
, _("%s: unrecognized option `%c%s'\n"),
865 argv
[0], argv
[optind
][0], nextchar
);
869 #if defined _LIBC && defined USE_IN_LIBIO
872 if (_IO_fwide (stderr
, 0) > 0)
873 __fwprintf (stderr
, L
"%s", buf
);
881 nextchar
= (char *) "";
888 /* Look at and handle the next short option-character. */
891 char c
= *nextchar
++;
892 char *temp
= my_index (optstring
, c
);
894 /* Increment `optind' when we start to process its last character. */
895 if (*nextchar
== '\0')
898 if (temp
== NULL
|| c
== ':')
902 #if defined _LIBC && defined USE_IN_LIBIO
909 /* 1003.2 specifies the format of this message. */
910 #if defined _LIBC && defined USE_IN_LIBIO
911 n
= __asprintf (&buf
, _("%s: illegal option -- %c\n"),
914 fprintf (stderr
, _("%s: illegal option -- %c\n"), argv
[0], c
);
919 #if defined _LIBC && defined USE_IN_LIBIO
920 n
= __asprintf (&buf
, _("%s: invalid option -- %c\n"),
923 fprintf (stderr
, _("%s: invalid option -- %c\n"), argv
[0], c
);
927 #if defined _LIBC && defined USE_IN_LIBIO
930 if (_IO_fwide (stderr
, 0) > 0)
931 __fwprintf (stderr
, L
"%s", buf
);
942 /* Convenience. Treat POSIX -W foo same as long option --foo */
943 if (temp
[0] == 'W' && temp
[1] == ';')
946 const struct option
*p
;
947 const struct option
*pfound
= NULL
;
953 /* This is an option that requires an argument. */
954 if (*nextchar
!= '\0')
957 /* If we end this ARGV-element by taking the rest as an arg,
958 we must advance to the next element now. */
961 else if (optind
== argc
)
965 /* 1003.2 specifies the format of this message. */
966 #if defined _LIBC && defined USE_IN_LIBIO
969 if (__asprintf (&buf
,
970 _("%s: option requires an argument -- %c\n"),
973 if (_IO_fwide (stderr
, 0) > 0)
974 __fwprintf (stderr
, L
"%s", buf
);
981 fprintf (stderr
, _("%s: option requires an argument -- %c\n"),
986 if (optstring
[0] == ':')
993 /* We already incremented `optind' once;
994 increment it again when taking next ARGV-elt as argument. */
995 optarg
= argv
[optind
++];
997 /* optarg is now the argument, see if it's in the
998 table of longopts. */
1000 for (nextchar
= nameend
= optarg
; *nameend
&& *nameend
!= '='; nameend
++)
1003 /* Test all long options for either exact match
1004 or abbreviated matches. */
1005 for (p
= longopts
, option_index
= 0; p
->name
; p
++, option_index
++)
1006 if (!strncmp (p
->name
, nextchar
, nameend
- nextchar
))
1008 if ((unsigned int) (nameend
- nextchar
) == strlen (p
->name
))
1010 /* Exact match found. */
1012 indfound
= option_index
;
1016 else if (pfound
== NULL
)
1018 /* First nonexact match found. */
1020 indfound
= option_index
;
1023 /* Second or later nonexact match found. */
1026 if (ambig
&& !exact
)
1030 #if defined _LIBC && defined USE_IN_LIBIO
1033 if (__asprintf (&buf
, _("%s: option `-W %s' is ambiguous\n"),
1034 argv
[0], argv
[optind
]) >= 0)
1036 if (_IO_fwide (stderr
, 0) > 0)
1037 __fwprintf (stderr
, L
"%s", buf
);
1039 fputs (buf
, stderr
);
1044 fprintf (stderr
, _("%s: option `-W %s' is ambiguous\n"),
1045 argv
[0], argv
[optind
]);
1048 nextchar
+= strlen (nextchar
);
1054 option_index
= indfound
;
1057 /* Don't test has_arg with >, because some C compilers don't
1058 allow it to be used on enums. */
1059 if (pfound
->has_arg
)
1060 optarg
= nameend
+ 1;
1065 #if defined _LIBC && defined USE_IN_LIBIO
1068 if (__asprintf (&buf
, _("\
1069 %s: option `-W %s' doesn't allow an argument\n"),
1070 argv
[0], pfound
->name
) >= 0)
1072 if (_IO_fwide (stderr
, 0) > 0)
1073 __fwprintf (stderr
, L
"%s", buf
);
1075 fputs (buf
, stderr
);
1080 fprintf (stderr
, _("\
1081 %s: option `-W %s' doesn't allow an argument\n"),
1082 argv
[0], pfound
->name
);
1086 nextchar
+= strlen (nextchar
);
1090 else if (pfound
->has_arg
== 1)
1093 optarg
= argv
[optind
++];
1098 #if defined _LIBC && defined USE_IN_LIBIO
1101 if (__asprintf (&buf
, _("\
1102 %s: option `%s' requires an argument\n"),
1103 argv
[0], argv
[optind
- 1]) >= 0)
1105 if (_IO_fwide (stderr
, 0) > 0)
1106 __fwprintf (stderr
, L
"%s", buf
);
1108 fputs (buf
, stderr
);
1114 _("%s: option `%s' requires an argument\n"),
1115 argv
[0], argv
[optind
- 1]);
1118 nextchar
+= strlen (nextchar
);
1119 return optstring
[0] == ':' ? ':' : '?';
1122 nextchar
+= strlen (nextchar
);
1123 if (longind
!= NULL
)
1124 *longind
= option_index
;
1127 *(pfound
->flag
) = pfound
->val
;
1133 return 'W'; /* Let the application handle it. */
1139 /* This is an option that accepts an argument optionally. */
1140 if (*nextchar
!= '\0')
1151 /* This is an option that requires an argument. */
1152 if (*nextchar
!= '\0')
1155 /* If we end this ARGV-element by taking the rest as an arg,
1156 we must advance to the next element now. */
1159 else if (optind
== argc
)
1163 /* 1003.2 specifies the format of this message. */
1164 #if defined _LIBC && defined USE_IN_LIBIO
1167 if (__asprintf (&buf
, _("\
1168 %s: option requires an argument -- %c\n"),
1171 if (_IO_fwide (stderr
, 0) > 0)
1172 __fwprintf (stderr
, L
"%s", buf
);
1174 fputs (buf
, stderr
);
1180 _("%s: option requires an argument -- %c\n"),
1185 if (optstring
[0] == ':')
1191 /* We already incremented `optind' once;
1192 increment it again when taking next ARGV-elt as argument. */
1193 optarg
= argv
[optind
++];
1202 getopt (argc
, argv
, optstring
)
1205 const char *optstring
;
1207 return _getopt_internal (argc
, argv
, optstring
,
1208 (const struct option
*) 0,
1213 #endif /* Not ELIDE_CODE. */
1217 /* Compile with -DTEST to make an executable for use in testing
1218 the above definition of `getopt'. */
1226 int digit_optind
= 0;
1230 int this_option_optind
= optind
? optind
: 1;
1232 c
= getopt (argc
, argv
, "abc:d:0123456789");
1248 if (digit_optind
!= 0 && digit_optind
!= this_option_optind
)
1249 printf ("digits occur in two different argv-elements.\n");
1250 digit_optind
= this_option_optind
;
1251 printf ("option %c\n", c
);
1255 printf ("option a\n");
1259 printf ("option b\n");
1263 printf ("option c with value `%s'\n", optarg
);
1270 printf ("?? getopt returned character code 0%o ??\n", c
);
1276 printf ("non-option ARGV-elements: ");
1277 while (optind
< argc
)
1278 printf ("%s ", argv
[optind
++]);
1287 /* arch-tag: 0e6da124-7269-4785-a9de-094c263d20dc
1288 (do not change this comment) */