]>
git.saurik.com Git - bison.git/blob - lib/getopt.c
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
20 along 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>. */
35 /* Comment out all this code if we are using the GNU C Library, and are not
36 actually compiling the library itself. This code is part of the GNU C
37 Library, but also included in many other GNU distributions. Compiling
38 and linking in this code is a waste when using the GNU C library
39 (especially if it is a shared library). Rather than having every GNU
40 program understand `configure --with-gnu-libc' and omit the object files,
41 it is simpler to just do this in the source for each such file. */
43 #define GETOPT_INTERFACE_VERSION 2
44 #if !defined _LIBC && defined __GLIBC__ && __GLIBC__ >= 2
45 # include <gnu-versions.h>
46 # if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION
54 #if HAVE_STDLIB_H || defined __GNU_LIBRARY__
57 #if HAVE_UNISTD_H || defined __GNU_LIBRARY__
63 # if HAVE_STRING_H - 0
69 /* This is for other GNU distributions with internationalized messages. */
70 # if (HAVE_LIBINTL_H && ENABLE_NLS) || defined _LIBC
73 # define _(msgid) gettext (msgid)
76 # define _(msgid) (msgid)
80 /* This version of `getopt' appears to the caller like standard Unix `getopt'
81 but it behaves differently for the user, since it allows the user
82 to intersperse the options with the other arguments.
84 As `getopt' works, it permutes the elements of ARGV so that,
85 when it is done, all the options precede everything else. Thus
86 all application programs are extended to handle flexible argument order.
88 Setting the environment variable POSIXLY_CORRECT disables permutation.
89 Then the behavior is completely standard.
91 GNU application programs can use a third alternative mode in which
92 they can distinguish the relative order of options and other arguments. */
96 /* For communication from `getopt' to the caller.
97 When `getopt' finds an option that takes an argument,
98 the argument value is returned here.
99 Also, when `ordering' is RETURN_IN_ORDER,
100 each non-option ARGV-element is returned here. */
104 /* Index in ARGV of the next element to be scanned.
105 This is used for communication to and from the caller
106 and for communication between successive calls to `getopt'.
108 On entry to `getopt', zero means this is the first call; initialize.
110 When `getopt' returns -1, this is the index of the first of the
111 non-option elements that the caller should itself scan.
113 Otherwise, `optind' communicates from one call to the next
114 how much of ARGV has been scanned so far. */
116 /* 1003.2 says this must be 1 before any call. */
119 /* Formerly, initialization of getopt depended on optind==0, which
120 causes problems with re-calling getopt as programs generally don't
123 int __getopt_initialized
;
125 /* The next char to be scanned in the option-element
126 in which the last option character we returned was found.
127 This allows us to pick up the scan where we left off.
129 If this is zero, or a null string, it means resume the scan
130 by advancing to the next ARGV-element. */
132 static char *nextchar
;
134 /* Callers store zero here to inhibit the error message
135 for unrecognized options. */
139 /* Set to an option character which was unrecognized.
140 This must be initialized on some systems to avoid linking in the
141 system's own getopt implementation. */
145 /* Describe how to deal with options that follow non-option ARGV-elements.
147 If the caller did not specify anything,
148 the default is REQUIRE_ORDER if the environment variable
149 POSIXLY_CORRECT is defined, PERMUTE otherwise.
151 REQUIRE_ORDER means don't recognize them as options;
152 stop option processing when the first non-option is seen.
153 This is what Unix does.
154 This mode of operation is selected by either setting the environment
155 variable POSIXLY_CORRECT, or using `+' as the first character
156 of the list of option characters.
158 PERMUTE is the default. We permute the contents of ARGV as we scan,
159 so that eventually all the non-options are at the end. This allows options
160 to be given in any order, even with programs that were not written to
163 RETURN_IN_ORDER is an option available to programs that were written
164 to expect options and other ARGV-elements in any order and that care about
165 the ordering of the two. We describe each non-option ARGV-element
166 as if it were the argument of an option with character code 1.
167 Using `-' as the first character of the list of option characters
168 selects this mode of operation.
170 The special argument `--' forces an end of option-scanning regardless
171 of the value of `ordering'. In the case of RETURN_IN_ORDER, only
172 `--' can cause `getopt' to return -1 with `optind' != ARGC. */
176 REQUIRE_ORDER
, PERMUTE
, RETURN_IN_ORDER
179 /* Value of POSIXLY_CORRECT environment variable. */
180 static char *posixly_correct
;
182 #if HAVE_STRING_H || defined __GNU_LIBRARY__
186 # include <strings.h>
190 #if !HAVE_STRCHR && !defined strchr && !defined __GNU_LIBRARY__
191 # define strchr my_strchr
207 #if !HAVE_DECL_GETENV && !defined getenv && !defined __GNU_LIBRARY__
211 /* Handle permutation of arguments. */
213 /* Describe the part of ARGV that contains non-options that have
214 been skipped. `first_nonopt' is the index in ARGV of the first of them;
215 `last_nonopt' is the index after the last of them. */
217 static int first_nonopt
;
218 static int last_nonopt
;
221 /* Bash 2.0 gives us an environment variable containing flags
222 indicating ARGV elements that should not be considered arguments. */
224 #ifdef USE_NONOPTION_FLAGS
225 /* Defined in getopt_init.c */
226 extern char *__getopt_nonoption_flags
;
228 static int nonoption_flags_max_len
;
229 static int nonoption_flags_len
;
232 static int original_argc
;
233 static char *const *original_argv
;
235 /* Make sure the environment variable bash 2.0 puts in the environment
236 is valid for the getopt call we must make sure that the ARGV passed
237 to getopt is that one passed to the process. */
239 __attribute__ ((unused
))
240 store_args_and_env (int argc
, char *const *argv
)
242 /* XXX This is no good solution. We should rather copy the args so
243 that we can compare them later. But we must not use malloc(3). */
244 original_argc
= argc
;
245 original_argv
= argv
;
247 # ifdef text_set_element
248 text_set_element (__libc_subinit
, store_args_and_env
);
249 # endif /* text_set_element */
251 # ifdef USE_NONOPTION_FLAGS
252 # define SWAP_FLAGS(ch1, ch2) \
253 if (nonoption_flags_len > 0) \
255 char __tmp = __getopt_nonoption_flags[ch1]; \
256 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
257 __getopt_nonoption_flags[ch2] = __tmp; \
260 # define SWAP_FLAGS(ch1, ch2)
263 # define SWAP_FLAGS(ch1, ch2)
266 /* Exchange two adjacent subsequences of ARGV.
267 One subsequence is elements [first_nonopt,last_nonopt)
268 which contains all the non-options that have been skipped so far.
269 The other is elements [last_nonopt,optind), which contains all
270 the options processed since those non-options were skipped.
272 `first_nonopt' and `last_nonopt' are relocated so that they describe
273 the new indices of the non-options in ARGV after they are moved. */
275 #if defined __STDC__ && __STDC__
276 static void exchange (char **);
283 int bottom
= first_nonopt
;
284 int middle
= last_nonopt
;
288 /* Exchange the shorter segment with the far end of the longer segment.
289 That puts the shorter segment into the right place.
290 It leaves the longer segment in the right place overall,
291 but it consists of two parts that need to be swapped next. */
293 #if defined _LIBC && defined USE_NONOPTION_FLAGS
294 /* First make sure the handling of the `__getopt_nonoption_flags'
295 string can work normally. Our top argument must be in the range
297 if (nonoption_flags_len
> 0 && top
>= nonoption_flags_max_len
)
299 /* We must extend the array. The user plays games with us and
300 presents new arguments. */
301 char *new_str
= malloc (top
+ 1);
303 nonoption_flags_len
= nonoption_flags_max_len
= 0;
306 memset (__mempcpy (new_str
, __getopt_nonoption_flags
,
307 nonoption_flags_max_len
),
308 '\0', top
+ 1 - nonoption_flags_max_len
);
309 nonoption_flags_max_len
= top
+ 1;
310 __getopt_nonoption_flags
= new_str
;
315 while (top
> middle
&& middle
> bottom
)
317 if (top
- middle
> middle
- bottom
)
319 /* Bottom segment is the short one. */
320 int len
= middle
- bottom
;
323 /* Swap it with the top part of the top segment. */
324 for (i
= 0; i
< len
; i
++)
326 tem
= argv
[bottom
+ i
];
327 argv
[bottom
+ i
] = argv
[top
- (middle
- bottom
) + i
];
328 argv
[top
- (middle
- bottom
) + i
] = tem
;
329 SWAP_FLAGS (bottom
+ i
, top
- (middle
- bottom
) + i
);
331 /* Exclude the moved bottom segment from further swapping. */
336 /* Top segment is the short one. */
337 int len
= top
- middle
;
340 /* Swap it with the bottom part of the bottom segment. */
341 for (i
= 0; i
< len
; i
++)
343 tem
= argv
[bottom
+ i
];
344 argv
[bottom
+ i
] = argv
[middle
+ i
];
345 argv
[middle
+ i
] = tem
;
346 SWAP_FLAGS (bottom
+ i
, middle
+ i
);
348 /* Exclude the moved top segment from further swapping. */
353 /* Update records for the slots the non-options now occupy. */
355 first_nonopt
+= (optind
- last_nonopt
);
356 last_nonopt
= optind
;
359 /* Initialize the internal data when the first call is made. */
361 #if defined __STDC__ && __STDC__
362 static const char *_getopt_initialize (int, char *const *, const char *);
365 _getopt_initialize (argc
, argv
, optstring
)
368 const char *optstring
;
370 /* Start processing options with ARGV-element 1 (since ARGV-element 0
371 is the program name); the sequence of previously skipped
372 non-option ARGV-elements is empty. */
374 first_nonopt
= last_nonopt
= optind
;
378 posixly_correct
= getenv ("POSIXLY_CORRECT");
380 /* Determine how to handle the ordering of options and nonoptions. */
382 if (optstring
[0] == '-')
384 ordering
= RETURN_IN_ORDER
;
387 else if (optstring
[0] == '+')
389 ordering
= REQUIRE_ORDER
;
392 else if (posixly_correct
!= NULL
)
393 ordering
= REQUIRE_ORDER
;
397 #if defined _LIBC && defined USE_NONOPTION_FLAGS
398 if (posixly_correct
== NULL
399 && argc
== original_argc
&& argv
== original_argv
)
401 if (nonoption_flags_max_len
== 0)
403 if (__getopt_nonoption_flags
== NULL
404 || __getopt_nonoption_flags
[0] == '\0')
405 nonoption_flags_max_len
= -1;
408 const char *orig_str
= __getopt_nonoption_flags
;
409 int len
= nonoption_flags_max_len
= strlen (orig_str
);
410 if (nonoption_flags_max_len
< argc
)
411 nonoption_flags_max_len
= argc
;
412 __getopt_nonoption_flags
=
413 (char *) malloc (nonoption_flags_max_len
);
414 if (__getopt_nonoption_flags
== NULL
)
415 nonoption_flags_max_len
= -1;
417 memset (__mempcpy (__getopt_nonoption_flags
, orig_str
, len
),
418 '\0', nonoption_flags_max_len
- len
);
421 nonoption_flags_len
= nonoption_flags_max_len
;
424 nonoption_flags_len
= 0;
430 /* Scan elements of ARGV (whose length is ARGC) for option characters
433 If an element of ARGV starts with '-', and is not exactly "-" or "--",
434 then it is an option element. The characters of this element
435 (aside from the initial '-') are option characters. If `getopt'
436 is called repeatedly, it returns successively each of the option characters
437 from each of the option elements.
439 If `getopt' finds another option character, it returns that character,
440 updating `optind' and `nextchar' so that the next call to `getopt' can
441 resume the scan with the following option character or ARGV-element.
443 If there are no more option characters, `getopt' returns -1.
444 Then `optind' is the index in ARGV of the first ARGV-element
445 that is not an option. (The ARGV-elements have been permuted
446 so that those that are not options now come last.)
448 OPTSTRING is a string containing the legitimate option characters.
449 If an option character is seen that is not listed in OPTSTRING,
450 return '?' after printing an error message. If you set `opterr' to
451 zero, the error message is suppressed but we still return '?'.
453 If a char in OPTSTRING is followed by a colon, that means it wants an arg,
454 so the following text in the same ARGV-element, or the text of the following
455 ARGV-element, is returned in `optarg'. Two colons mean an option that
456 wants an optional arg; if there is text in the current ARGV-element,
457 it is returned in `optarg', otherwise `optarg' is set to zero.
459 If OPTSTRING starts with `-' or `+', it requests different methods of
460 handling the non-option ARGV-elements.
461 See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
463 Long-named options begin with `--' instead of `-'.
464 Their names may be abbreviated as long as the abbreviation is unique
465 or is an exact match for some defined option. If they have an
466 argument, it follows the option name in the same ARGV-element, separated
467 from the option name by a `=', or else the in next ARGV-element.
468 When `getopt' finds a long-named option, it returns 0 if that option's
469 `flag' field is nonzero, the value of the option's `val' field
470 if the `flag' field is zero.
472 The elements of ARGV aren't really const, because we permute them.
473 But we pretend they're const in the prototype to be compatible
476 LONGOPTS is a vector of `struct option' terminated by an
477 element containing a name which is zero.
479 LONGIND returns the index in LONGOPT of the long-named option found.
480 It is only valid when a long-named option has been found by the most
483 If LONG_ONLY is nonzero, '-' as well as '--' can introduce
484 long-named options. */
487 _getopt_internal (argc
, argv
, optstring
, longopts
, longind
, long_only
)
490 const char *optstring
;
491 const struct option
*longopts
;
495 int print_errors
= opterr
;
496 if (optstring
[0] == ':')
504 if (optind
== 0 || !__getopt_initialized
)
507 optind
= 1; /* Don't scan ARGV[0], the program name. */
508 optstring
= _getopt_initialize (argc
, argv
, optstring
);
509 __getopt_initialized
= 1;
512 /* Test whether ARGV[optind] points to a non-option argument.
513 Either it does not have option syntax, or there is an environment flag
514 from the shell indicating it is not an option. The later information
515 is only used when the used in the GNU libc. */
516 #if defined _LIBC && defined USE_NONOPTION_FLAGS
517 # define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0' \
518 || (optind < nonoption_flags_len \
519 && __getopt_nonoption_flags[optind] == '1'))
521 # define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0')
524 if (nextchar
== NULL
|| *nextchar
== '\0')
526 /* Advance to the next ARGV-element. */
528 /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
529 moved back by the user (who may also have changed the arguments). */
530 if (last_nonopt
> optind
)
531 last_nonopt
= optind
;
532 if (first_nonopt
> optind
)
533 first_nonopt
= optind
;
535 if (ordering
== PERMUTE
)
537 /* If we have just processed some options following some non-options,
538 exchange them so that the options come first. */
540 if (first_nonopt
!= last_nonopt
&& last_nonopt
!= optind
)
541 exchange ((char **) argv
);
542 else if (last_nonopt
!= optind
)
543 first_nonopt
= optind
;
545 /* Skip any additional non-options
546 and extend the range of non-options previously skipped. */
548 while (optind
< argc
&& NONOPTION_P
)
550 last_nonopt
= optind
;
553 /* The special ARGV-element `--' means premature end of options.
554 Skip it like a null option,
555 then exchange with previous non-options as if it were an option,
556 then skip everything else like a non-option. */
558 if (optind
!= argc
&& !strcmp (argv
[optind
], "--"))
562 if (first_nonopt
!= last_nonopt
&& last_nonopt
!= optind
)
563 exchange ((char **) argv
);
564 else if (first_nonopt
== last_nonopt
)
565 first_nonopt
= optind
;
571 /* If we have done all the ARGV-elements, stop the scan
572 and back over any non-options that we skipped and permuted. */
576 /* Set the next-arg-index to point at the non-options
577 that we previously skipped, so the caller will digest them. */
578 if (first_nonopt
!= last_nonopt
)
579 optind
= first_nonopt
;
583 /* If we have come to a non-option and did not permute it,
584 either stop the scan or describe it to the caller and pass it by. */
588 if (ordering
== REQUIRE_ORDER
)
590 optarg
= argv
[optind
++];
594 /* We have found another option-ARGV-element.
595 Skip the initial punctuation. */
597 nextchar
= (argv
[optind
] + 1
598 + (longopts
!= NULL
&& argv
[optind
][1] == '-'));
601 /* Decode the current option-ARGV-element. */
603 /* Check whether the ARGV-element is a long option.
605 If long_only and the ARGV-element has the form "-f", where f is
606 a valid short option, don't consider it an abbreviated form of
607 a long option that starts with f. Otherwise there would be no
608 way to give the -f short option.
610 On the other hand, if there's a long option "fubar" and
611 the ARGV-element is "-fu", do consider that an abbreviation of
612 the long option, just like "--fu", and not "-f" with arg "u".
614 This distinction seems to be the most useful approach. */
617 && (argv
[optind
][1] == '-'
618 || (long_only
&& (argv
[optind
][2] || !strchr (optstring
, argv
[optind
][1])))))
621 const struct option
*p
;
622 const struct option
*pfound
= NULL
;
628 for (nameend
= nextchar
; *nameend
&& *nameend
!= '='; nameend
++)
631 /* Test all long options for either exact match
632 or abbreviated matches. */
633 for (p
= longopts
, option_index
= 0; p
->name
; p
++, option_index
++)
634 if (!strncmp (p
->name
, nextchar
, nameend
- nextchar
))
636 if ((unsigned int) (nameend
- nextchar
)
637 == (unsigned int) strlen (p
->name
))
639 /* Exact match found. */
641 indfound
= option_index
;
645 else if (pfound
== NULL
)
647 /* First nonexact match found. */
649 indfound
= option_index
;
652 || pfound
->has_arg
!= p
->has_arg
653 || pfound
->flag
!= p
->flag
654 || pfound
->val
!= p
->val
)
655 /* Second or later nonexact match found. */
662 fprintf (stderr
, _("%s: option `%s' is ambiguous\n"),
663 argv
[0], argv
[optind
]);
664 nextchar
+= strlen (nextchar
);
672 option_index
= indfound
;
676 /* Don't test has_arg with >, because some C compilers don't
677 allow it to be used on enums. */
679 optarg
= nameend
+ 1;
684 if (argv
[optind
- 1][1] == '-')
687 _("%s: option `--%s' doesn't allow an argument\n"),
688 argv
[0], pfound
->name
);
690 /* +option or -option */
692 _("%s: option `%c%s' doesn't allow an argument\n"),
693 argv
[0], argv
[optind
- 1][0], pfound
->name
);
696 nextchar
+= strlen (nextchar
);
698 optopt
= pfound
->val
;
702 else if (pfound
->has_arg
== 1)
705 optarg
= argv
[optind
++];
710 _("%s: option `%s' requires an argument\n"),
711 argv
[0], argv
[optind
- 1]);
712 nextchar
+= strlen (nextchar
);
713 optopt
= pfound
->val
;
714 return optstring
[0] == ':' ? ':' : '?';
717 nextchar
+= strlen (nextchar
);
719 *longind
= option_index
;
722 *(pfound
->flag
) = pfound
->val
;
728 /* Can't find it as a long option. If this is not getopt_long_only,
729 or the option starts with '--' or is not a valid short
730 option, then it's an error.
731 Otherwise interpret it as a short option. */
732 if (!long_only
|| argv
[optind
][1] == '-'
733 || strchr (optstring
, *nextchar
) == NULL
)
737 if (argv
[optind
][1] == '-')
739 fprintf (stderr
, _("%s: unrecognized option `--%s'\n"),
742 /* +option or -option */
743 fprintf (stderr
, _("%s: unrecognized option `%c%s'\n"),
744 argv
[0], argv
[optind
][0], nextchar
);
746 nextchar
= (char *) "";
753 /* Look at and handle the next short option-character. */
756 char c
= *nextchar
++;
757 char *temp
= strchr (optstring
, c
);
759 /* Increment `optind' when we start to process its last character. */
760 if (*nextchar
== '\0')
763 if (temp
== NULL
|| c
== ':')
768 /* 1003.2 specifies the format of this message. */
769 fprintf (stderr
, _("%s: illegal option -- %c\n"),
772 fprintf (stderr
, _("%s: invalid option -- %c\n"),
778 /* Convenience. Treat POSIX -W foo same as long option --foo */
779 if (temp
[0] == 'W' && temp
[1] == ';')
782 const struct option
*p
;
783 const struct option
*pfound
= NULL
;
789 /* This is an option that requires an argument. */
790 if (*nextchar
!= '\0')
793 /* If we end this ARGV-element by taking the rest as an arg,
794 we must advance to the next element now. */
797 else if (optind
== argc
)
801 /* 1003.2 specifies the format of this message. */
802 fprintf (stderr
, _("%s: option requires an argument -- %c\n"),
806 if (optstring
[0] == ':')
813 /* We already incremented `optind' once;
814 increment it again when taking next ARGV-elt as argument. */
815 optarg
= argv
[optind
++];
817 /* optarg is now the argument, see if it's in the
818 table of longopts. */
820 for (nextchar
= nameend
= optarg
; *nameend
&& *nameend
!= '='; nameend
++)
823 /* Test all long options for either exact match
824 or abbreviated matches. */
825 for (p
= longopts
, option_index
= 0; p
->name
; p
++, option_index
++)
826 if (!strncmp (p
->name
, nextchar
, nameend
- nextchar
))
828 if ((unsigned int) (nameend
- nextchar
) == strlen (p
->name
))
830 /* Exact match found. */
832 indfound
= option_index
;
836 else if (pfound
== NULL
)
838 /* First nonexact match found. */
840 indfound
= option_index
;
843 /* Second or later nonexact match found. */
849 fprintf (stderr
, _("%s: option `-W %s' is ambiguous\n"),
850 argv
[0], argv
[optind
]);
851 nextchar
+= strlen (nextchar
);
857 option_index
= indfound
;
860 /* Don't test has_arg with >, because some C compilers don't
861 allow it to be used on enums. */
863 optarg
= nameend
+ 1;
867 fprintf (stderr
, _("\
868 %s: option `-W %s' doesn't allow an argument\n"),
869 argv
[0], pfound
->name
);
871 nextchar
+= strlen (nextchar
);
875 else if (pfound
->has_arg
== 1)
878 optarg
= argv
[optind
++];
883 _("%s: option `%s' requires an argument\n"),
884 argv
[0], argv
[optind
- 1]);
885 nextchar
+= strlen (nextchar
);
886 return optstring
[0] == ':' ? ':' : '?';
889 nextchar
+= strlen (nextchar
);
891 *longind
= option_index
;
894 *(pfound
->flag
) = pfound
->val
;
900 return 'W'; /* Let the application handle it. */
906 /* This is an option that accepts an argument optionally. */
907 if (*nextchar
!= '\0')
918 /* This is an option that requires an argument. */
919 if (*nextchar
!= '\0')
922 /* If we end this ARGV-element by taking the rest as an arg,
923 we must advance to the next element now. */
926 else if (optind
== argc
)
930 /* 1003.2 specifies the format of this message. */
932 _("%s: option requires an argument -- %c\n"),
936 if (optstring
[0] == ':')
942 /* We already incremented `optind' once;
943 increment it again when taking next ARGV-elt as argument. */
944 optarg
= argv
[optind
++];
953 getopt (argc
, argv
, optstring
)
956 const char *optstring
;
958 return _getopt_internal (argc
, argv
, optstring
,
959 (const struct option
*) 0,
964 #endif /* Not ELIDE_CODE. */
968 /* Compile with -DTEST to make an executable for use in testing
969 the above definition of `getopt'. */
977 int digit_optind
= 0;
981 int this_option_optind
= optind
? optind
: 1;
983 c
= getopt (argc
, argv
, "abc:d:0123456789");
999 if (digit_optind
!= 0 && digit_optind
!= this_option_optind
)
1000 printf ("digits occur in two different argv-elements.\n");
1001 digit_optind
= this_option_optind
;
1002 printf ("option %c\n", c
);
1006 printf ("option a\n");
1010 printf ("option b\n");
1014 printf ("option c with value `%s'\n", optarg
);
1021 printf ("?? getopt returned character code 0%o ??\n", c
);
1027 printf ("non-option ARGV-elements: ");
1028 while (optind
< argc
)
1029 printf ("%s ", argv
[optind
++]);