annotate liboctave/getopt.c @ 1076:2ba812c74caa

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