annotate lib-src/getopt.c @ 26:441bb1e64a06 r19-15b96

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