fixed DESTDIR
[platform/upstream/time.git] / getopt.c
1 /* Getopt for GNU.
2    NOTE: getopt is now part of the C library, so if you don't know what
3    "Keep this file name-space clean" means, talk to roland@gnu.ai.mit.edu
4    before changing it!
5
6    Copyright (C) 1987, 88, 89, 90, 91, 92, 93, 94, 95, 1996
7         Free Software Foundation, Inc.
8
9    This program is free software; you can redistribute it and/or modify it
10    under the terms of the GNU General Public License as published by the
11    Free Software Foundation; either version 2, or (at your option) any
12    later version.
13
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.
18
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
21    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
22    USA.  */
23 \f
24 /* This tells Alpha OSF/1 not to define a getopt prototype in <stdio.h>.
25    Ditto for AIX 3.2 and <stdlib.h>.  */
26 #ifndef _NO_PROTO
27 #define _NO_PROTO
28 #endif
29
30 #ifdef HAVE_CONFIG_H
31 #include <config.h>
32 #endif
33
34 #if !defined (__STDC__) || !__STDC__
35 /* This is a separate conditional since some stdc systems
36    reject `defined (const)'.  */
37 #ifndef const
38 #define const
39 #endif
40 #endif
41
42 #include <stdio.h>
43
44 /* Comment out all this code if we are using the GNU C Library, and are not
45    actually compiling the library itself.  This code is part of the GNU C
46    Library, but also included in many other GNU distributions.  Compiling
47    and linking in this code is a waste when using the GNU C library
48    (especially if it is a shared library).  Rather than having every GNU
49    program understand `configure --with-gnu-libc' and omit the object files,
50    it is simpler to just do this in the source for each such file.  */
51
52 #if defined (_LIBC) || !defined (__GNU_LIBRARY__)
53
54
55 /* This needs to come after some library #include
56    to get __GNU_LIBRARY__ defined.  */
57 #ifdef  __GNU_LIBRARY__
58 /* Don't include stdlib.h for non-GNU C libraries because some of them
59    contain conflicting prototypes for getopt.  */
60 #include <stdlib.h>
61 #include <unistd.h>
62 #endif  /* GNU C library.  */
63
64 #ifdef VMS
65 #include <unixlib.h>
66 #if HAVE_STRING_H - 0
67 #include <string.h>
68 #endif
69 #endif
70
71 #if defined (WIN32) && !defined (__CYGWIN32__)
72 /* It's not Unix, really.  See?  Capital letters.  */
73 #include <windows.h>
74 #define getpid() GetCurrentProcessId()
75 #endif
76
77 #ifndef _
78 /* This is for other GNU distributions with internationalized messages.
79    When compiling libc, the _ macro is predefined.  */
80 #ifdef HAVE_LIBINTL_H
81 # include <libintl.h>
82 # define _(msgid)       gettext (msgid)
83 #else
84 # define _(msgid)       (msgid)
85 #endif
86 #endif
87
88 /* This version of `getopt' appears to the caller like standard Unix `getopt'
89    but it behaves differently for the user, since it allows the user
90    to intersperse the options with the other arguments.
91
92    As `getopt' works, it permutes the elements of ARGV so that,
93    when it is done, all the options precede everything else.  Thus
94    all application programs are extended to handle flexible argument order.
95
96    Setting the environment variable POSIXLY_CORRECT disables permutation.
97    Then the behavior is completely standard.
98
99    GNU application programs can use a third alternative mode in which
100    they can distinguish the relative order of options and other arguments.  */
101
102 #include "getopt.h"
103
104 /* For communication from `getopt' to the caller.
105    When `getopt' finds an option that takes an argument,
106    the argument value is returned here.
107    Also, when `ordering' is RETURN_IN_ORDER,
108    each non-option ARGV-element is returned here.  */
109
110 char *optarg = NULL;
111
112 /* Index in ARGV of the next element to be scanned.
113    This is used for communication to and from the caller
114    and for communication between successive calls to `getopt'.
115
116    On entry to `getopt', zero means this is the first call; initialize.
117
118    When `getopt' returns EOF, this is the index of the first of the
119    non-option elements that the caller should itself scan.
120
121    Otherwise, `optind' communicates from one call to the next
122    how much of ARGV has been scanned so far.  */
123
124 /* XXX 1003.2 says this must be 1 before any call.  */
125 int optind = 0;
126
127 /* The next char to be scanned in the option-element
128    in which the last option character we returned was found.
129    This allows us to pick up the scan where we left off.
130
131    If this is zero, or a null string, it means resume the scan
132    by advancing to the next ARGV-element.  */
133
134 static char *nextchar;
135
136 /* Callers store zero here to inhibit the error message
137    for unrecognized options.  */
138
139 int opterr = 1;
140
141 /* Set to an option character which was unrecognized.
142    This must be initialized on some systems to avoid linking in the
143    system's own getopt implementation.  */
144
145 int optopt = '?';
146
147 /* Describe how to deal with options that follow non-option ARGV-elements.
148
149    If the caller did not specify anything,
150    the default is REQUIRE_ORDER if the environment variable
151    POSIXLY_CORRECT is defined, PERMUTE otherwise.
152
153    REQUIRE_ORDER means don't recognize them as options;
154    stop option processing when the first non-option is seen.
155    This is what Unix does.
156    This mode of operation is selected by either setting the environment
157    variable POSIXLY_CORRECT, or using `+' as the first character
158    of the list of option characters.
159
160    PERMUTE is the default.  We permute the contents of ARGV as we scan,
161    so that eventually all the non-options are at the end.  This allows options
162    to be given in any order, even with programs that were not written to
163    expect this.
164
165    RETURN_IN_ORDER is an option available to programs that were written
166    to expect options and other ARGV-elements in any order and that care about
167    the ordering of the two.  We describe each non-option ARGV-element
168    as if it were the argument of an option with character code 1.
169    Using `-' as the first character of the list of option characters
170    selects this mode of operation.
171
172    The special argument `--' forces an end of option-scanning regardless
173    of the value of `ordering'.  In the case of RETURN_IN_ORDER, only
174    `--' can cause `getopt' to return EOF with `optind' != ARGC.  */
175
176 static enum
177 {
178   REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER
179 } ordering;
180
181 /* Value of POSIXLY_CORRECT environment variable.  */
182 static char *posixly_correct;
183 \f
184 #ifdef  __GNU_LIBRARY__
185 /* We want to avoid inclusion of string.h with non-GNU libraries
186    because there are many ways it can cause trouble.
187    On some systems, it contains special magic macros that don't work
188    in GCC.  */
189 #include <string.h>
190 #define my_index        strchr
191 #else
192
193 /* Avoid depending on library functions or files
194    whose names are inconsistent.  */
195
196 char *getenv ();
197
198 static char *
199 my_index (str, chr)
200      const char *str;
201      int chr;
202 {
203   while (*str)
204     {
205       if (*str == chr)
206         return (char *) str;
207       str++;
208     }
209   return 0;
210 }
211
212 /* If using GCC, we can safely declare strlen this way.
213    If not using GCC, it is ok not to declare it.  */
214 #ifdef __GNUC__
215 /* Note that Motorola Delta 68k R3V7 comes with GCC but not stddef.h.
216    That was relevant to code that was here before.  */
217 #if !defined (__STDC__) || !__STDC__
218 /* gcc with -traditional declares the built-in strlen to return int,
219    and has done so at least since version 2.4.5. -- rms.  */
220 extern int strlen (const char *);
221 #endif /* not __STDC__ */
222 #endif /* __GNUC__ */
223
224 #endif /* not __GNU_LIBRARY__ */
225 \f
226 /* Handle permutation of arguments.  */
227
228 /* Describe the part of ARGV that contains non-options that have
229    been skipped.  `first_nonopt' is the index in ARGV of the first of them;
230    `last_nonopt' is the index after the last of them.  */
231
232 static int first_nonopt;
233 static int last_nonopt;
234
235 /* Bash 2.0 gives us an environment variable containing flags
236    indicating ARGV elements that should not be considered arguments.  */
237
238 static const char *nonoption_flags;
239 static int nonoption_flags_len;
240
241 /* Exchange two adjacent subsequences of ARGV.
242    One subsequence is elements [first_nonopt,last_nonopt)
243    which contains all the non-options that have been skipped so far.
244    The other is elements [last_nonopt,optind), which contains all
245    the options processed since those non-options were skipped.
246
247    `first_nonopt' and `last_nonopt' are relocated so that they describe
248    the new indices of the non-options in ARGV after they are moved.  */
249
250 #if defined (__STDC__) && __STDC__
251 static void exchange (char **);
252 #endif
253
254 static void
255 exchange (argv)
256      char **argv;
257 {
258   int bottom = first_nonopt;
259   int middle = last_nonopt;
260   int top = optind;
261   char *tem;
262
263   /* Exchange the shorter segment with the far end of the longer segment.
264      That puts the shorter segment into the right place.
265      It leaves the longer segment in the right place overall,
266      but it consists of two parts that need to be swapped next.  */
267
268   while (top > middle && middle > bottom)
269     {
270       if (top - middle > middle - bottom)
271         {
272           /* Bottom segment is the short one.  */
273           int len = middle - bottom;
274           register int i;
275
276           /* Swap it with the top part of the top segment.  */
277           for (i = 0; i < len; i++)
278             {
279               tem = argv[bottom + i];
280               argv[bottom + i] = argv[top - (middle - bottom) + i];
281               argv[top - (middle - bottom) + i] = tem;
282             }
283           /* Exclude the moved bottom segment from further swapping.  */
284           top -= len;
285         }
286       else
287         {
288           /* Top segment is the short one.  */
289           int len = top - middle;
290           register int i;
291
292           /* Swap it with the bottom part of the bottom segment.  */
293           for (i = 0; i < len; i++)
294             {
295               tem = argv[bottom + i];
296               argv[bottom + i] = argv[middle + i];
297               argv[middle + i] = tem;
298             }
299           /* Exclude the moved top segment from further swapping.  */
300           bottom += len;
301         }
302     }
303
304   /* Update records for the slots the non-options now occupy.  */
305
306   first_nonopt += (optind - last_nonopt);
307   last_nonopt = optind;
308 }
309
310 /* Initialize the internal data when the first call is made.  */
311
312 #if defined (__STDC__) && __STDC__
313 static const char *_getopt_initialize (const char *);
314 #endif
315 static const char *
316 _getopt_initialize (optstring)
317      const char *optstring;
318 {
319   /* Start processing options with ARGV-element 1 (since ARGV-element 0
320      is the program name); the sequence of previously skipped
321      non-option ARGV-elements is empty.  */
322
323   first_nonopt = last_nonopt = optind = 1;
324
325   nextchar = NULL;
326
327   posixly_correct = getenv ("POSIXLY_CORRECT");
328
329   /* Determine how to handle the ordering of options and nonoptions.  */
330
331   if (optstring[0] == '-')
332     {
333       ordering = RETURN_IN_ORDER;
334       ++optstring;
335     }
336   else if (optstring[0] == '+')
337     {
338       ordering = REQUIRE_ORDER;
339       ++optstring;
340     }
341   else if (posixly_correct != NULL)
342     ordering = REQUIRE_ORDER;
343   else
344     ordering = PERMUTE;
345
346   if (posixly_correct == NULL)
347     {
348       /* Bash 2.0 puts a special variable in the environment for each
349          command it runs, specifying which ARGV elements are the results of
350          file name wildcard expansion and therefore should not be
351          considered as options.  */
352       char var[100];
353       sprintf (var, "_%d_GNU_nonoption_argv_flags_", getpid ());
354       nonoption_flags = getenv (var);
355       if (nonoption_flags == NULL)
356         nonoption_flags_len = 0;
357       else
358         nonoption_flags_len = strlen (nonoption_flags);
359     }
360
361   return optstring;
362 }
363 \f
364 /* Scan elements of ARGV (whose length is ARGC) for option characters
365    given in OPTSTRING.
366
367    If an element of ARGV starts with '-', and is not exactly "-" or "--",
368    then it is an option element.  The characters of this element
369    (aside from the initial '-') are option characters.  If `getopt'
370    is called repeatedly, it returns successively each of the option characters
371    from each of the option elements.
372
373    If `getopt' finds another option character, it returns that character,
374    updating `optind' and `nextchar' so that the next call to `getopt' can
375    resume the scan with the following option character or ARGV-element.
376
377    If there are no more option characters, `getopt' returns `EOF'.
378    Then `optind' is the index in ARGV of the first ARGV-element
379    that is not an option.  (The ARGV-elements have been permuted
380    so that those that are not options now come last.)
381
382    OPTSTRING is a string containing the legitimate option characters.
383    If an option character is seen that is not listed in OPTSTRING,
384    return '?' after printing an error message.  If you set `opterr' to
385    zero, the error message is suppressed but we still return '?'.
386
387    If a char in OPTSTRING is followed by a colon, that means it wants an arg,
388    so the following text in the same ARGV-element, or the text of the following
389    ARGV-element, is returned in `optarg'.  Two colons mean an option that
390    wants an optional arg; if there is text in the current ARGV-element,
391    it is returned in `optarg', otherwise `optarg' is set to zero.
392
393    If OPTSTRING starts with `-' or `+', it requests different methods of
394    handling the non-option ARGV-elements.
395    See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above.
396
397    Long-named options begin with `--' instead of `-'.
398    Their names may be abbreviated as long as the abbreviation is unique
399    or is an exact match for some defined option.  If they have an
400    argument, it follows the option name in the same ARGV-element, separated
401    from the option name by a `=', or else the in next ARGV-element.
402    When `getopt' finds a long-named option, it returns 0 if that option's
403    `flag' field is nonzero, the value of the option's `val' field
404    if the `flag' field is zero.
405
406    The elements of ARGV aren't really const, because we permute them.
407    But we pretend they're const in the prototype to be compatible
408    with other systems.
409
410    LONGOPTS is a vector of `struct option' terminated by an
411    element containing a name which is zero.
412
413    LONGIND returns the index in LONGOPT of the long-named option found.
414    It is only valid when a long-named option has been found by the most
415    recent call.
416
417    If LONG_ONLY is nonzero, '-' as well as '--' can introduce
418    long-named options.  */
419
420 int
421 _getopt_internal (argc, argv, optstring, longopts, longind, long_only)
422      int argc;
423      char *const *argv;
424      const char *optstring;
425      const struct option *longopts;
426      int *longind;
427      int long_only;
428 {
429   optarg = NULL;
430
431   if (optind == 0)
432     {
433       optstring = _getopt_initialize (optstring);
434       optind = 1;               /* Don't scan ARGV[0], the program name.  */
435     }
436
437   /* Test whether ARGV[optind] points to a non-option argument.
438      Either it does not have option syntax, or there is an environment flag
439      from the shell indicating it is not an option.  */
440 #define NONOPTION_P (argv[optind][0] != '-' || argv[optind][1] == '\0'        \
441                      || (optind < nonoption_flags_len                         \
442                          && nonoption_flags[optind] == '1'))
443
444   if (nextchar == NULL || *nextchar == '\0')
445     {
446       /* Advance to the next ARGV-element.  */
447
448       /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
449          moved back by the user (who may also have changed the arguments).  */
450       if (last_nonopt > optind)
451         last_nonopt = optind;
452       if (first_nonopt > optind)
453         first_nonopt = optind;
454
455       if (ordering == PERMUTE)
456         {
457           /* If we have just processed some options following some non-options,
458              exchange them so that the options come first.  */
459
460           if (first_nonopt != last_nonopt && last_nonopt != optind)
461             exchange ((char **) argv);
462           else if (last_nonopt != optind)
463             first_nonopt = optind;
464
465           /* Skip any additional non-options
466              and extend the range of non-options previously skipped.  */
467
468           while (optind < argc && NONOPTION_P)
469             optind++;
470           last_nonopt = optind;
471         }
472
473       /* The special ARGV-element `--' means premature end of options.
474          Skip it like a null option,
475          then exchange with previous non-options as if it were an option,
476          then skip everything else like a non-option.  */
477
478       if (optind != argc && !strcmp (argv[optind], "--"))
479         {
480           optind++;
481
482           if (first_nonopt != last_nonopt && last_nonopt != optind)
483             exchange ((char **) argv);
484           else if (first_nonopt == last_nonopt)
485             first_nonopt = optind;
486           last_nonopt = argc;
487
488           optind = argc;
489         }
490
491       /* If we have done all the ARGV-elements, stop the scan
492          and back over any non-options that we skipped and permuted.  */
493
494       if (optind == argc)
495         {
496           /* Set the next-arg-index to point at the non-options
497              that we previously skipped, so the caller will digest them.  */
498           if (first_nonopt != last_nonopt)
499             optind = first_nonopt;
500           return EOF;
501         }
502
503       /* If we have come to a non-option and did not permute it,
504          either stop the scan or describe it to the caller and pass it by.  */
505
506       if (NONOPTION_P)
507         {
508           if (ordering == REQUIRE_ORDER)
509             return EOF;
510           optarg = argv[optind++];
511           return 1;
512         }
513
514       /* We have found another option-ARGV-element.
515          Skip the initial punctuation.  */
516
517       nextchar = (argv[optind] + 1
518                   + (longopts != NULL && argv[optind][1] == '-'));
519     }
520
521   /* Decode the current option-ARGV-element.  */
522
523   /* Check whether the ARGV-element is a long option.
524
525      If long_only and the ARGV-element has the form "-f", where f is
526      a valid short option, don't consider it an abbreviated form of
527      a long option that starts with f.  Otherwise there would be no
528      way to give the -f short option.
529
530      On the other hand, if there's a long option "fubar" and
531      the ARGV-element is "-fu", do consider that an abbreviation of
532      the long option, just like "--fu", and not "-f" with arg "u".
533
534      This distinction seems to be the most useful approach.  */
535
536   if (longopts != NULL
537       && (argv[optind][1] == '-'
538           || (long_only && (argv[optind][2] || !my_index (optstring, argv[optind][1])))))
539     {
540       char *nameend;
541       const struct option *p;
542       const struct option *pfound = NULL;
543       int exact = 0;
544       int ambig = 0;
545       int indfound;
546       int option_index;
547
548       for (nameend = nextchar; *nameend && *nameend != '='; nameend++)
549         /* Do nothing.  */ ;
550
551       /* Test all long options for either exact match
552          or abbreviated matches.  */
553       for (p = longopts, option_index = 0; p->name; p++, option_index++)
554         if (!strncmp (p->name, nextchar, nameend - nextchar))
555           {
556             if (nameend - nextchar == strlen (p->name))
557               {
558                 /* Exact match found.  */
559                 pfound = p;
560                 indfound = option_index;
561                 exact = 1;
562                 break;
563               }
564             else if (pfound == NULL)
565               {
566                 /* First nonexact match found.  */
567                 pfound = p;
568                 indfound = option_index;
569               }
570             else
571               /* Second or later nonexact match found.  */
572               ambig = 1;
573           }
574
575       if (ambig && !exact)
576         {
577           if (opterr)
578             fprintf (stderr, _("%s: option `%s' is ambiguous\n"),
579                      argv[0], argv[optind]);
580           nextchar += strlen (nextchar);
581           optind++;
582           optopt = 0;
583           return '?';
584         }
585
586       if (pfound != NULL)
587         {
588           option_index = indfound;
589           optind++;
590           if (*nameend)
591             {
592               /* Don't test has_arg with >, because some C compilers don't
593                  allow it to be used on enums.  */
594               if (pfound->has_arg)
595                 optarg = nameend + 1;
596               else
597                 {
598                   if (opterr)
599                    if (argv[optind - 1][1] == '-')
600                     /* --option */
601                     fprintf (stderr,
602                      _("%s: option `--%s' doesn't allow an argument\n"),
603                      argv[0], pfound->name);
604                    else
605                     /* +option or -option */
606                     fprintf (stderr,
607                      _("%s: option `%c%s' doesn't allow an argument\n"),
608                      argv[0], argv[optind - 1][0], pfound->name);
609
610                   nextchar += strlen (nextchar);
611
612                   optopt = pfound->val;
613                   return '?';
614                 }
615             }
616           else if (pfound->has_arg == 1)
617             {
618               if (optind < argc)
619                 optarg = argv[optind++];
620               else
621                 {
622                   if (opterr)
623                     fprintf (stderr,
624                            _("%s: option `%s' requires an argument\n"),
625                            argv[0], argv[optind - 1]);
626                   nextchar += strlen (nextchar);
627                   optopt = pfound->val;
628                   return optstring[0] == ':' ? ':' : '?';
629                 }
630             }
631           nextchar += strlen (nextchar);
632           if (longind != NULL)
633             *longind = option_index;
634           if (pfound->flag)
635             {
636               *(pfound->flag) = pfound->val;
637               return 0;
638             }
639           return pfound->val;
640         }
641
642       /* Can't find it as a long option.  If this is not getopt_long_only,
643          or the option starts with '--' or is not a valid short
644          option, then it's an error.
645          Otherwise interpret it as a short option.  */
646       if (!long_only || argv[optind][1] == '-'
647           || my_index (optstring, *nextchar) == NULL)
648         {
649           if (opterr)
650             {
651               if (argv[optind][1] == '-')
652                 /* --option */
653                 fprintf (stderr, _("%s: unrecognized option `--%s'\n"),
654                          argv[0], nextchar);
655               else
656                 /* +option or -option */
657                 fprintf (stderr, _("%s: unrecognized option `%c%s'\n"),
658                          argv[0], argv[optind][0], nextchar);
659             }
660           nextchar = (char *) "";
661           optind++;
662           optopt = 0;
663           return '?';
664         }
665     }
666
667   /* Look at and handle the next short option-character.  */
668
669   {
670     char c = *nextchar++;
671     char *temp = my_index (optstring, c);
672
673     /* Increment `optind' when we start to process its last character.  */
674     if (*nextchar == '\0')
675       ++optind;
676
677     if (temp == NULL || c == ':')
678       {
679         if (opterr)
680           {
681             if (posixly_correct)
682               /* 1003.2 specifies the format of this message.  */
683               fprintf (stderr, _("%s: illegal option -- %c\n"),
684                        argv[0], c);
685             else
686               fprintf (stderr, _("%s: invalid option -- %c\n"),
687                        argv[0], c);
688           }
689         optopt = c;
690         return '?';
691       }
692     if (temp[1] == ':')
693       {
694         if (temp[2] == ':')
695           {
696             /* This is an option that accepts an argument optionally.  */
697             if (*nextchar != '\0')
698               {
699                 optarg = nextchar;
700                 optind++;
701               }
702             else
703               optarg = NULL;
704             nextchar = NULL;
705           }
706         else
707           {
708             /* This is an option that requires an argument.  */
709             if (*nextchar != '\0')
710               {
711                 optarg = nextchar;
712                 /* If we end this ARGV-element by taking the rest as an arg,
713                    we must advance to the next element now.  */
714                 optind++;
715               }
716             else if (optind == argc)
717               {
718                 if (opterr)
719                   {
720                     /* 1003.2 specifies the format of this message.  */
721                     fprintf (stderr,
722                            _("%s: option requires an argument -- %c\n"),
723                            argv[0], c);
724                   }
725                 optopt = c;
726                 if (optstring[0] == ':')
727                   c = ':';
728                 else
729                   c = '?';
730               }
731             else
732               /* We already incremented `optind' once;
733                  increment it again when taking next ARGV-elt as argument.  */
734               optarg = argv[optind++];
735             nextchar = NULL;
736           }
737       }
738     return c;
739   }
740 }
741
742 int
743 getopt (argc, argv, optstring)
744      int argc;
745      char *const *argv;
746      const char *optstring;
747 {
748   return _getopt_internal (argc, argv, optstring,
749                            (const struct option *) 0,
750                            (int *) 0,
751                            0);
752 }
753
754 #endif  /* _LIBC or not __GNU_LIBRARY__.  */
755 \f
756 #ifdef TEST
757
758 /* Compile with -DTEST to make an executable for use in testing
759    the above definition of `getopt'.  */
760
761 int
762 main (argc, argv)
763      int argc;
764      char **argv;
765 {
766   int c;
767   int digit_optind = 0;
768
769   while (1)
770     {
771       int this_option_optind = optind ? optind : 1;
772
773       c = getopt (argc, argv, "abc:d:0123456789");
774       if (c == EOF)
775         break;
776
777       switch (c)
778         {
779         case '0':
780         case '1':
781         case '2':
782         case '3':
783         case '4':
784         case '5':
785         case '6':
786         case '7':
787         case '8':
788         case '9':
789           if (digit_optind != 0 && digit_optind != this_option_optind)
790             printf ("digits occur in two different argv-elements.\n");
791           digit_optind = this_option_optind;
792           printf ("option %c\n", c);
793           break;
794
795         case 'a':
796           printf ("option a\n");
797           break;
798
799         case 'b':
800           printf ("option b\n");
801           break;
802
803         case 'c':
804           printf ("option c with value `%s'\n", optarg);
805           break;
806
807         case '?':
808           break;
809
810         default:
811           printf ("?? getopt returned character code 0%o ??\n", c);
812         }
813     }
814
815   if (optind < argc)
816     {
817       printf ("non-option ARGV-elements: ");
818       while (optind < argc)
819         printf ("%s ", argv[optind++]);
820       printf ("\n");
821     }
822
823   exit (0);
824 }
825
826 #endif /* TEST */