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,2003,2004,2006,2008
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 Lesser General Public License as published by
11
the Free Software Foundation; either version 3 of the License, or
12
(at your option) any later version.
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 Lesser General Public License for more details.
19
You should have received a copy of the GNU Lesser General Public License
20
along with this program. If not, see <http://www.gnu.org/licenses/>. */
37
# define _(msgid) gettext (msgid)
40
#if defined _LIBC && defined USE_IN_LIBIO
44
#ifndef attribute_hidden
45
# define attribute_hidden
48
/* Unlike standard Unix `getopt', functions like `getopt_long'
49
let the user intersperse the options with the other arguments.
51
As `getopt_long' works, it permutes the elements of ARGV so that,
52
when it is done, all the options precede everything else. Thus
53
all application programs are extended to handle flexible argument order.
55
Using `getopt' or setting the environment variable POSIXLY_CORRECT
57
Then the application's behavior is completely standard.
59
GNU application programs can use a third alternative mode in which
60
they can distinguish the relative order of options and other arguments. */
62
#include "getopt_int.h"
64
/* For communication from `getopt' to the caller.
65
When `getopt' finds an option that takes an argument,
66
the argument value is returned here.
67
Also, when `ordering' is RETURN_IN_ORDER,
68
each non-option ARGV-element is returned here. */
72
/* Index in ARGV of the next element to be scanned.
73
This is used for communication to and from the caller
74
and for communication between successive calls to `getopt'.
76
On entry to `getopt', zero means this is the first call; initialize.
78
When `getopt' returns -1, this is the index of the first of the
79
non-option elements that the caller should itself scan.
81
Otherwise, `optind' communicates from one call to the next
82
how much of ARGV has been scanned so far. */
84
/* 1003.2 says this must be 1 before any call. */
87
/* Callers store zero here to inhibit the error message
88
for unrecognized options. */
92
/* Set to an option character which was unrecognized.
93
This must be initialized on some systems to avoid linking in the
94
system's own getopt implementation. */
98
/* Keep a global copy of all internal members of getopt_data. */
100
static struct _getopt_data getopt_data;
103
#if defined HAVE_DECL_GETENV && !HAVE_DECL_GETENV
104
extern char *getenv ();
108
/* Stored original parameters.
109
XXX This is no good solution. We should rather copy the args so
110
that we can compare them later. But we must not use malloc(3). */
111
extern int __libc_argc;
112
extern char **__libc_argv;
114
/* Bash 2.0 gives us an environment variable containing flags
115
indicating ARGV elements that should not be considered arguments. */
117
# ifdef USE_NONOPTION_FLAGS
118
/* Defined in getopt_init.c */
119
extern char *__getopt_nonoption_flags;
122
# ifdef USE_NONOPTION_FLAGS
123
# define SWAP_FLAGS(ch1, ch2) \
124
if (d->__nonoption_flags_len > 0) \
126
char __tmp = __getopt_nonoption_flags[ch1]; \
127
__getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
128
__getopt_nonoption_flags[ch2] = __tmp; \
131
# define SWAP_FLAGS(ch1, ch2)
134
# define SWAP_FLAGS(ch1, ch2)
137
/* Exchange two adjacent subsequences of ARGV.
138
One subsequence is elements [first_nonopt,last_nonopt)
139
which contains all the non-options that have been skipped so far.
140
The other is elements [last_nonopt,optind), which contains all
141
the options processed since those non-options were skipped.
143
`first_nonopt' and `last_nonopt' are relocated so that they describe
144
the new indices of the non-options in ARGV after they are moved. */
147
exchange (char **argv, struct _getopt_data *d)
149
int bottom = d->__first_nonopt;
150
int middle = d->__last_nonopt;
154
/* Exchange the shorter segment with the far end of the longer segment.
155
That puts the shorter segment into the right place.
156
It leaves the longer segment in the right place overall,
157
but it consists of two parts that need to be swapped next. */
159
#if defined _LIBC && defined USE_NONOPTION_FLAGS
160
/* First make sure the handling of the `__getopt_nonoption_flags'
161
string can work normally. Our top argument must be in the range
163
if (d->__nonoption_flags_len > 0 && top >= d->__nonoption_flags_max_len)
165
/* We must extend the array. The user plays games with us and
166
presents new arguments. */
167
char *new_str = malloc (top + 1);
169
d->__nonoption_flags_len = d->__nonoption_flags_max_len = 0;
172
memset (__mempcpy (new_str, __getopt_nonoption_flags,
173
d->__nonoption_flags_max_len),
174
'\0', top + 1 - d->__nonoption_flags_max_len);
175
d->__nonoption_flags_max_len = top + 1;
176
__getopt_nonoption_flags = new_str;
181
while (top > middle && middle > bottom)
183
if (top - middle > middle - bottom)
185
/* Bottom segment is the short one. */
186
int len = middle - bottom;
189
/* Swap it with the top part of the top segment. */
190
for (i = 0; i < len; i++)
192
tem = argv[bottom + i];
193
argv[bottom + i] = argv[top - (middle - bottom) + i];
194
argv[top - (middle - bottom) + i] = tem;
195
SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
197
/* Exclude the moved bottom segment from further swapping. */
202
/* Top segment is the short one. */
203
int len = top - middle;
206
/* Swap it with the bottom part of the bottom segment. */
207
for (i = 0; i < len; i++)
209
tem = argv[bottom + i];
210
argv[bottom + i] = argv[middle + i];
211
argv[middle + i] = tem;
212
SWAP_FLAGS (bottom + i, middle + i);
214
/* Exclude the moved top segment from further swapping. */
219
/* Update records for the slots the non-options now occupy. */
221
d->__first_nonopt += (d->optind - d->__last_nonopt);
222
d->__last_nonopt = d->optind;
225
/* Initialize the internal data when the first call is made. */
228
_getopt_initialize (int argc, char **argv, const char *optstring,
229
int posixly_correct, struct _getopt_data *d)
231
/* Start processing options with ARGV-element 1 (since ARGV-element 0
232
is the program name); the sequence of previously skipped
233
non-option ARGV-elements is empty. */
235
d->__first_nonopt = d->__last_nonopt = d->optind;
237
d->__nextchar = NULL;
239
d->__posixly_correct = posixly_correct || !!getenv ("POSIXLY_CORRECT");
241
/* Determine how to handle the ordering of options and nonoptions. */
243
if (optstring[0] == '-')
245
d->__ordering = RETURN_IN_ORDER;
248
else if (optstring[0] == '+')
250
d->__ordering = REQUIRE_ORDER;
253
else if (d->__posixly_correct)
254
d->__ordering = REQUIRE_ORDER;
256
d->__ordering = PERMUTE;
258
#if defined _LIBC && defined USE_NONOPTION_FLAGS
259
if (!d->__posixly_correct
260
&& argc == __libc_argc && argv == __libc_argv)
262
if (d->__nonoption_flags_max_len == 0)
264
if (__getopt_nonoption_flags == NULL
265
|| __getopt_nonoption_flags[0] == '\0')
266
d->__nonoption_flags_max_len = -1;
269
const char *orig_str = __getopt_nonoption_flags;
270
int len = d->__nonoption_flags_max_len = strlen (orig_str);
271
if (d->__nonoption_flags_max_len < argc)
272
d->__nonoption_flags_max_len = argc;
273
__getopt_nonoption_flags =
274
(char *) malloc (d->__nonoption_flags_max_len);
275
if (__getopt_nonoption_flags == NULL)
276
d->__nonoption_flags_max_len = -1;
278
memset (__mempcpy (__getopt_nonoption_flags, orig_str, len),
279
'\0', d->__nonoption_flags_max_len - len);
282
d->__nonoption_flags_len = d->__nonoption_flags_max_len;
285
d->__nonoption_flags_len = 0;
294
/* Scan elements of ARGV (whose length is ARGC) for option characters
297
If an element of ARGV starts with '-', and is not exactly "-" or "--",
298
then it is an option element. The characters of this element
299
(aside from the initial '-') are option characters. If `getopt'
300
is called repeatedly, it returns successively each of the option characters
301
from each of the option elements.
303
If `getopt' finds another option character, it returns that character,
304
updating `optind' and `nextchar' so that the next call to `getopt' can
305
resume the scan with the following option character or ARGV-element.
307
If there are no more option characters, `getopt' returns -1.
308
Then `optind' is the index in ARGV of the first ARGV-element
309
that is not an option. (The ARGV-elements have been permuted
310
so that those that are not options now come last.)
312
OPTSTRING is a string containing the legitimate option characters.
313
If an option character is seen that is not listed in OPTSTRING,
314
return '?' after printing an error message. If you set `opterr' to
315
zero, the error message is suppressed but we still return '?'.
317
If a char in OPTSTRING is followed by a colon, that means it wants an arg,
318
so the following text in the same ARGV-element, or the text of the following
319
ARGV-element, is returned in `optarg'. Two colons mean an option that
320
wants an optional arg; if there is text in the current ARGV-element,
321
it is returned in `optarg', otherwise `optarg' is set to zero.
323
If OPTSTRING starts with `-' or `+', it requests different methods of
324
handling the non-option ARGV-elements.
325
See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
327
Long-named options begin with `--' instead of `-'.
328
Their names may be abbreviated as long as the abbreviation is unique
329
or is an exact match for some defined option. If they have an
330
argument, it follows the option name in the same ARGV-element, separated
331
from the option name by a `=', or else the in next ARGV-element.
332
When `getopt' finds a long-named option, it returns 0 if that option's
333
`flag' field is nonzero, the value of the option's `val' field
334
if the `flag' field is zero.
336
LONGOPTS is a vector of `struct option' terminated by an
337
element containing a name which is zero.
339
LONGIND returns the index in LONGOPT of the long-named option found.
340
It is only valid when a long-named option has been found by the most
343
If LONG_ONLY is nonzero, '-' as well as '--' can introduce
346
If POSIXLY_CORRECT is nonzero, behave as if the POSIXLY_CORRECT
347
environment variable were set. */
350
_getopt_internal_r (int argc, char **argv, const char *optstring,
351
const struct option *longopts, int *longind,
352
int long_only, int posixly_correct, struct _getopt_data *d)
354
int print_errors = d->opterr;
355
if (optstring[0] == ':')
363
if (d->optind == 0 || !d->__initialized)
366
d->optind = 1; /* Don't scan ARGV[0], the program name. */
367
optstring = _getopt_initialize (argc, argv, optstring,
369
d->__initialized = 1;
372
/* Test whether ARGV[optind] points to a non-option argument.
373
Either it does not have option syntax, or there is an environment flag
374
from the shell indicating it is not an option. The later information
375
is only used when the used in the GNU libc. */
376
#if defined _LIBC && defined USE_NONOPTION_FLAGS
377
# define NONOPTION_P (argv[d->optind][0] != '-' || argv[d->optind][1] == '\0' \
378
|| (d->optind < d->__nonoption_flags_len \
379
&& __getopt_nonoption_flags[d->optind] == '1'))
381
# define NONOPTION_P (argv[d->optind][0] != '-' || argv[d->optind][1] == '\0')
384
if (d->__nextchar == NULL || *d->__nextchar == '\0')
386
/* Advance to the next ARGV-element. */
388
/* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
389
moved back by the user (who may also have changed the arguments). */
390
if (d->__last_nonopt > d->optind)
391
d->__last_nonopt = d->optind;
392
if (d->__first_nonopt > d->optind)
393
d->__first_nonopt = d->optind;
395
if (d->__ordering == PERMUTE)
397
/* If we have just processed some options following some non-options,
398
exchange them so that the options come first. */
400
if (d->__first_nonopt != d->__last_nonopt
401
&& d->__last_nonopt != d->optind)
402
exchange ((char **) argv, d);
403
else if (d->__last_nonopt != d->optind)
404
d->__first_nonopt = d->optind;
406
/* Skip any additional non-options
407
and extend the range of non-options previously skipped. */
409
while (d->optind < argc && NONOPTION_P)
411
d->__last_nonopt = d->optind;
414
/* The special ARGV-element `--' means premature end of options.
415
Skip it like a null option,
416
then exchange with previous non-options as if it were an option,
417
then skip everything else like a non-option. */
419
if (d->optind != argc && !strcmp (argv[d->optind], "--"))
423
if (d->__first_nonopt != d->__last_nonopt
424
&& d->__last_nonopt != d->optind)
425
exchange ((char **) argv, d);
426
else if (d->__first_nonopt == d->__last_nonopt)
427
d->__first_nonopt = d->optind;
428
d->__last_nonopt = argc;
433
/* If we have done all the ARGV-elements, stop the scan
434
and back over any non-options that we skipped and permuted. */
436
if (d->optind == argc)
438
/* Set the next-arg-index to point at the non-options
439
that we previously skipped, so the caller will digest them. */
440
if (d->__first_nonopt != d->__last_nonopt)
441
d->optind = d->__first_nonopt;
445
/* If we have come to a non-option and did not permute it,
446
either stop the scan or describe it to the caller and pass it by. */
450
if (d->__ordering == REQUIRE_ORDER)
452
d->optarg = argv[d->optind++];
456
/* We have found another option-ARGV-element.
457
Skip the initial punctuation. */
459
d->__nextchar = (argv[d->optind] + 1
460
+ (longopts != NULL && argv[d->optind][1] == '-'));
463
/* Decode the current option-ARGV-element. */
465
/* Check whether the ARGV-element is a long option.
467
If long_only and the ARGV-element has the form "-f", where f is
468
a valid short option, don't consider it an abbreviated form of
469
a long option that starts with f. Otherwise there would be no
470
way to give the -f short option.
472
On the other hand, if there's a long option "fubar" and
473
the ARGV-element is "-fu", do consider that an abbreviation of
474
the long option, just like "--fu", and not "-f" with arg "u".
476
This distinction seems to be the most useful approach. */
479
&& (argv[d->optind][1] == '-'
480
|| (long_only && (argv[d->optind][2]
481
|| !strchr (optstring, argv[d->optind][1])))))
484
const struct option *p;
485
const struct option *pfound = NULL;
491
for (nameend = d->__nextchar; *nameend && *nameend != '='; nameend++)
494
/* Test all long options for either exact match
495
or abbreviated matches. */
496
for (p = longopts, option_index = 0; p->name; p++, option_index++)
497
if (!strncmp (p->name, d->__nextchar, nameend - d->__nextchar))
499
if ((unsigned int) (nameend - d->__nextchar)
500
== (unsigned int) strlen (p->name))
502
/* Exact match found. */
504
indfound = option_index;
508
else if (pfound == NULL)
510
/* First nonexact match found. */
512
indfound = option_index;
515
|| pfound->has_arg != p->has_arg
516
|| pfound->flag != p->flag
517
|| pfound->val != p->val)
518
/* Second or later nonexact match found. */
526
#if defined _LIBC && defined USE_IN_LIBIO
529
if (__asprintf (&buf, _("%s: option `%s' is ambiguous\n"),
530
argv[0], argv[d->optind]) >= 0)
532
_IO_flockfile (stderr);
534
int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
535
((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
537
__fxprintf (NULL, "%s", buf);
539
((_IO_FILE *) stderr)->_flags2 = old_flags2;
540
_IO_funlockfile (stderr);
545
fprintf (stderr, _("%s: option `%s' is ambiguous\n"),
546
argv[0], argv[d->optind]);
549
d->__nextchar += strlen (d->__nextchar);
557
option_index = indfound;
561
/* Don't test has_arg with >, because some C compilers don't
562
allow it to be used on enums. */
564
d->optarg = nameend + 1;
569
#if defined _LIBC && defined USE_IN_LIBIO
574
if (argv[d->optind - 1][1] == '-')
577
#if defined _LIBC && defined USE_IN_LIBIO
578
n = __asprintf (&buf, _("\
579
%s: option `--%s' doesn't allow an argument\n"),
580
argv[0], pfound->name);
582
fprintf (stderr, _("\
583
%s: option `--%s' doesn't allow an argument\n"),
584
argv[0], pfound->name);
589
/* +option or -option */
590
#if defined _LIBC && defined USE_IN_LIBIO
591
n = __asprintf (&buf, _("\
592
%s: option `%c%s' doesn't allow an argument\n"),
593
argv[0], argv[d->optind - 1][0],
596
fprintf (stderr, _("\
597
%s: option `%c%s' doesn't allow an argument\n"),
598
argv[0], argv[d->optind - 1][0],
603
#if defined _LIBC && defined USE_IN_LIBIO
606
_IO_flockfile (stderr);
608
int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
609
((_IO_FILE *) stderr)->_flags2
610
|= _IO_FLAGS2_NOTCANCEL;
612
__fxprintf (NULL, "%s", buf);
614
((_IO_FILE *) stderr)->_flags2 = old_flags2;
615
_IO_funlockfile (stderr);
622
d->__nextchar += strlen (d->__nextchar);
624
d->optopt = pfound->val;
628
else if (pfound->has_arg == 1)
630
if (d->optind < argc)
631
d->optarg = argv[d->optind++];
636
#if defined _LIBC && defined USE_IN_LIBIO
639
if (__asprintf (&buf, _("\
640
%s: option `%s' requires an argument\n"),
641
argv[0], argv[d->optind - 1]) >= 0)
643
_IO_flockfile (stderr);
645
int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
646
((_IO_FILE *) stderr)->_flags2
647
|= _IO_FLAGS2_NOTCANCEL;
649
__fxprintf (NULL, "%s", buf);
651
((_IO_FILE *) stderr)->_flags2 = old_flags2;
652
_IO_funlockfile (stderr);
658
_("%s: option `%s' requires an argument\n"),
659
argv[0], argv[d->optind - 1]);
662
d->__nextchar += strlen (d->__nextchar);
663
d->optopt = pfound->val;
664
return optstring[0] == ':' ? ':' : '?';
667
d->__nextchar += strlen (d->__nextchar);
669
*longind = option_index;
672
*(pfound->flag) = pfound->val;
678
/* Can't find it as a long option. If this is not getopt_long_only,
679
or the option starts with '--' or is not a valid short
680
option, then it's an error.
681
Otherwise interpret it as a short option. */
682
if (!long_only || argv[d->optind][1] == '-'
683
|| strchr (optstring, *d->__nextchar) == NULL)
687
#if defined _LIBC && defined USE_IN_LIBIO
692
if (argv[d->optind][1] == '-')
695
#if defined _LIBC && defined USE_IN_LIBIO
696
n = __asprintf (&buf, _("%s: unrecognized option `--%s'\n"),
697
argv[0], d->__nextchar);
699
fprintf (stderr, _("%s: unrecognized option `--%s'\n"),
700
argv[0], d->__nextchar);
705
/* +option or -option */
706
#if defined _LIBC && defined USE_IN_LIBIO
707
n = __asprintf (&buf, _("%s: unrecognized option `%c%s'\n"),
708
argv[0], argv[d->optind][0], d->__nextchar);
710
fprintf (stderr, _("%s: unrecognized option `%c%s'\n"),
711
argv[0], argv[d->optind][0], d->__nextchar);
715
#if defined _LIBC && defined USE_IN_LIBIO
718
_IO_flockfile (stderr);
720
int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
721
((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
723
__fxprintf (NULL, "%s", buf);
725
((_IO_FILE *) stderr)->_flags2 = old_flags2;
726
_IO_funlockfile (stderr);
732
d->__nextchar = (char *) "";
739
/* Look at and handle the next short option-character. */
742
char c = *d->__nextchar++;
743
char *temp = strchr (optstring, c);
745
/* Increment `optind' when we start to process its last character. */
746
if (*d->__nextchar == '\0')
749
if (temp == NULL || c == ':')
753
#if defined _LIBC && defined USE_IN_LIBIO
758
if (d->__posixly_correct)
760
/* 1003.2 specifies the format of this message. */
761
#if defined _LIBC && defined USE_IN_LIBIO
762
n = __asprintf (&buf, _("%s: illegal option -- %c\n"),
765
fprintf (stderr, _("%s: illegal option -- %c\n"), argv[0], c);
770
#if defined _LIBC && defined USE_IN_LIBIO
771
n = __asprintf (&buf, _("%s: invalid option -- %c\n"),
774
fprintf (stderr, _("%s: invalid option -- %c\n"), argv[0], c);
778
#if defined _LIBC && defined USE_IN_LIBIO
781
_IO_flockfile (stderr);
783
int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
784
((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
786
__fxprintf (NULL, "%s", buf);
788
((_IO_FILE *) stderr)->_flags2 = old_flags2;
789
_IO_funlockfile (stderr);
798
/* Convenience. Treat POSIX -W foo same as long option --foo */
799
if (temp[0] == 'W' && temp[1] == ';')
802
const struct option *p;
803
const struct option *pfound = NULL;
809
/* This is an option that requires an argument. */
810
if (*d->__nextchar != '\0')
812
d->optarg = d->__nextchar;
813
/* If we end this ARGV-element by taking the rest as an arg,
814
we must advance to the next element now. */
817
else if (d->optind == argc)
821
/* 1003.2 specifies the format of this message. */
822
#if defined _LIBC && defined USE_IN_LIBIO
825
if (__asprintf (&buf,
826
_("%s: option requires an argument -- %c\n"),
829
_IO_flockfile (stderr);
831
int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
832
((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
834
__fxprintf (NULL, "%s", buf);
836
((_IO_FILE *) stderr)->_flags2 = old_flags2;
837
_IO_funlockfile (stderr);
842
fprintf (stderr, _("%s: option requires an argument -- %c\n"),
847
if (optstring[0] == ':')
854
/* We already incremented `d->optind' once;
855
increment it again when taking next ARGV-elt as argument. */
856
d->optarg = argv[d->optind++];
858
/* optarg is now the argument, see if it's in the
859
table of longopts. */
861
for (d->__nextchar = nameend = d->optarg; *nameend && *nameend != '=';
865
/* Test all long options for either exact match
866
or abbreviated matches. */
867
for (p = longopts, option_index = 0; p->name; p++, option_index++)
868
if (!strncmp (p->name, d->__nextchar, nameend - d->__nextchar))
870
if ((unsigned int) (nameend - d->__nextchar) == strlen (p->name))
872
/* Exact match found. */
874
indfound = option_index;
878
else if (pfound == NULL)
880
/* First nonexact match found. */
882
indfound = option_index;
885
/* Second or later nonexact match found. */
892
#if defined _LIBC && defined USE_IN_LIBIO
895
if (__asprintf (&buf, _("%s: option `-W %s' is ambiguous\n"),
896
argv[0], argv[d->optind]) >= 0)
898
_IO_flockfile (stderr);
900
int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
901
((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
903
__fxprintf (NULL, "%s", buf);
905
((_IO_FILE *) stderr)->_flags2 = old_flags2;
906
_IO_funlockfile (stderr);
911
fprintf (stderr, _("%s: option `-W %s' is ambiguous\n"),
912
argv[0], argv[d->optind]);
915
d->__nextchar += strlen (d->__nextchar);
921
option_index = indfound;
924
/* Don't test has_arg with >, because some C compilers don't
925
allow it to be used on enums. */
927
d->optarg = nameend + 1;
932
#if defined _LIBC && defined USE_IN_LIBIO
935
if (__asprintf (&buf, _("\
936
%s: option `-W %s' doesn't allow an argument\n"),
937
argv[0], pfound->name) >= 0)
939
_IO_flockfile (stderr);
941
int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
942
((_IO_FILE *) stderr)->_flags2
943
|= _IO_FLAGS2_NOTCANCEL;
945
__fxprintf (NULL, "%s", buf);
947
((_IO_FILE *) stderr)->_flags2 = old_flags2;
948
_IO_funlockfile (stderr);
953
fprintf (stderr, _("\
954
%s: option `-W %s' doesn't allow an argument\n"),
955
argv[0], pfound->name);
959
d->__nextchar += strlen (d->__nextchar);
963
else if (pfound->has_arg == 1)
965
if (d->optind < argc)
966
d->optarg = argv[d->optind++];
971
#if defined _LIBC && defined USE_IN_LIBIO
974
if (__asprintf (&buf, _("\
975
%s: option `%s' requires an argument\n"),
976
argv[0], argv[d->optind - 1]) >= 0)
978
_IO_flockfile (stderr);
980
int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
981
((_IO_FILE *) stderr)->_flags2
982
|= _IO_FLAGS2_NOTCANCEL;
984
__fxprintf (NULL, "%s", buf);
986
((_IO_FILE *) stderr)->_flags2 = old_flags2;
987
_IO_funlockfile (stderr);
993
_("%s: option `%s' requires an argument\n"),
994
argv[0], argv[d->optind - 1]);
997
d->__nextchar += strlen (d->__nextchar);
998
return optstring[0] == ':' ? ':' : '?';
1001
d->__nextchar += strlen (d->__nextchar);
1002
if (longind != NULL)
1003
*longind = option_index;
1006
*(pfound->flag) = pfound->val;
1011
d->__nextchar = NULL;
1012
return 'W'; /* Let the application handle it. */
1018
/* This is an option that accepts an argument optionally. */
1019
if (*d->__nextchar != '\0')
1021
d->optarg = d->__nextchar;
1026
d->__nextchar = NULL;
1030
/* This is an option that requires an argument. */
1031
if (*d->__nextchar != '\0')
1033
d->optarg = d->__nextchar;
1034
/* If we end this ARGV-element by taking the rest as an arg,
1035
we must advance to the next element now. */
1038
else if (d->optind == argc)
1042
/* 1003.2 specifies the format of this message. */
1043
#if defined _LIBC && defined USE_IN_LIBIO
1046
if (__asprintf (&buf, _("\
1047
%s: option requires an argument -- %c\n"),
1050
_IO_flockfile (stderr);
1052
int old_flags2 = ((_IO_FILE *) stderr)->_flags2;
1053
((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL;
1055
__fxprintf (NULL, "%s", buf);
1057
((_IO_FILE *) stderr)->_flags2 = old_flags2;
1058
_IO_funlockfile (stderr);
1064
_("%s: option requires an argument -- %c\n"),
1069
if (optstring[0] == ':')
1075
/* We already incremented `optind' once;
1076
increment it again when taking next ARGV-elt as argument. */
1077
d->optarg = argv[d->optind++];
1078
d->__nextchar = NULL;
1086
_getopt_internal (int argc, char **argv, const char *optstring,
1087
const struct option *longopts, int *longind,
1088
int long_only, int posixly_correct)
1092
getopt_data.optind = optind;
1093
getopt_data.opterr = opterr;
1095
result = _getopt_internal_r (argc, argv, optstring, longopts, longind,
1096
long_only, posixly_correct, &getopt_data);
1098
optind = getopt_data.optind;
1099
optarg = getopt_data.optarg;
1100
optopt = getopt_data.optopt;
1105
/* glibc gets a LSB-compliant getopt.
1106
Standalone applications get a POSIX-compliant getopt. */
1108
enum { POSIXLY_CORRECT = 0 };
1110
enum { POSIXLY_CORRECT = 1 };
1114
getopt (int argc, char *const *argv, const char *optstring)
1116
return _getopt_internal (argc, (char **) argv, optstring, NULL, NULL, 0,
1123
/* Compile with -DTEST to make an executable for use in testing
1124
the above definition of `getopt'. */
1127
main (int argc, char **argv)
1130
int digit_optind = 0;
1134
int this_option_optind = optind ? optind : 1;
1136
c = getopt (argc, argv, "abc:d:0123456789");
1152
if (digit_optind != 0 && digit_optind != this_option_optind)
1153
printf ("digits occur in two different argv-elements.\n");
1154
digit_optind = this_option_optind;
1155
printf ("option %c\n", c);
1159
printf ("option a\n");
1163
printf ("option b\n");
1167
printf ("option c with value `%s'\n", optarg);
1174
printf ("?? getopt returned character code 0%o ??\n", c);
1180
printf ("non-option ARGV-elements: ");
1181
while (optind < argc)
1182
printf ("%s ", argv[optind++]);