blob: 37c4ec0f024f4d9c508c7ff07ec25725640b8488 [file] [log] [blame]
Manuel Novoa III cad53642003-03-19 09:13:01 +00001/* vi: set sw=4 ts=4: */
2/*
Eric Andersen8876fb22003-06-20 09:01:58 +00003 * universal getopt_ulflags implementation for busybox
Manuel Novoa III cad53642003-03-19 09:13:01 +00004 *
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +00005 * Copyright (C) 2003-2005 Vladimir Oleynik <dzo@simtreas.ru>
Manuel Novoa III cad53642003-03-19 09:13:01 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
23#include <getopt.h>
24#include <string.h>
Eric Andersen8876fb22003-06-20 09:01:58 +000025#include <assert.h>
26#include <stdlib.h>
Manuel Novoa III cad53642003-03-19 09:13:01 +000027#include "libbb.h"
28
Mike Frysinger2bf88a82005-04-18 22:42:58 +000029/* Documentation !
30
Mike Frysingere5d0bde2005-05-10 23:48:35 +000031unsigned long
Mike Frysinger2bf88a82005-04-18 22:42:58 +000032bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...)
33
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000034 The command line options must be declared in const char
35 *applet_opts as a string of chars, for example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000036
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000037 flags = bb_getopt_ulflags(argc, argv, "rnug");
Mike Frysinger2bf88a82005-04-18 22:42:58 +000038
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000039 If one of the given options is found, a flag value is added to
40 the return value (an unsigned long).
Mike Frysinger2bf88a82005-04-18 22:42:58 +000041
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000042 The flag value is determined by the position of the char in
43 applet_opts string. For example, in the above case:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000044
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000045 flags = bb_getopt_ulflags(argc, argv, "rnug");
Mike Frysinger2bf88a82005-04-18 22:42:58 +000046
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000047 "r" will add 1 (bit 1 : 0x01)
48 "n" will add 2 (bit 2 : 0x02)
49 "u will add 4 (bit 3 : 0x03)
50 "g" will add 8 (bit 4 : 0x04)
Mike Frysinger2bf88a82005-04-18 22:42:58 +000051
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000052 and so on. You can also look at the return value as a bit
53 field and each option sets one of bits.
Mike Frysinger2bf88a82005-04-18 22:42:58 +000054
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000055 ":" If one of the options requires an argument, then add a ":"
56 after the char in applet_opts and provide a pointer to store
57 the argument. For example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +000058
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000059 char *pointer_to_arg_for_a;
60 char *pointer_to_arg_for_b;
61 char *pointer_to_arg_for_c;
62 char *pointer_to_arg_for_d;
Mike Frysinger2bf88a82005-04-18 22:42:58 +000063
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000064 flags = bb_getopt_ulflags(argc, argv, "a:b:c:d:",
65 &pointer_to_arg_for_a, &pointer_to_arg_for_b,
66 &pointer_to_arg_for_c, &pointer_to_arg_for_d);
Mike Frysinger2bf88a82005-04-18 22:42:58 +000067
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000068 The type of the pointer (char* or llist_t *) may be controlled
69 by the "*" special character that is set in the external string
70 bb_opt_complementally (see below for more info).
Mike Frysingere5d0bde2005-05-10 23:48:35 +000071
72static const struct option bb_default_long_options[]
73
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000074 This struct allows you to define long options. The syntax for
75 declaring the array is just like that of getopt's longopts.
76 (see getopt(3))
Mike Frysingere5d0bde2005-05-10 23:48:35 +000077
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000078 static const struct option applet_long_options[] = {
79 { "verbose", 0, 0, v },
80 { 0, 0, 0, 0 }
81 };
82 bb_applet_long_options = applet_long_options;
Mike Frysingere5d0bde2005-05-10 23:48:35 +000083
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000084 The last argument (val) can undefined from applet_opts.
85 If you use this, then:
86 - return bit have next position after short options
87 - if has_arg is not "no_argument", use ptr for arg also
88 - bb_opt_complementally have effects for this too
Mike Frysingerfb6d22c2005-05-11 00:02:39 +000089
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000090 Note: a good applet will make long options configurable via the
91 config process and not a required feature. The current standard
92 is to name the config option CONFIG_FEATURE_<applet>_LONG_OPTIONS.
Mike Frysingerfb6d22c2005-05-11 00:02:39 +000093
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000094const char *bb_opt_complementally
Mike Frysingerfb6d22c2005-05-11 00:02:39 +000095
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +000096 ":" The colon (":") is used to separate groups of two or more chars
97 and/or groups of chars and special characters (stating some
98 conditions to be checked).
Mike Frysingere5d0bde2005-05-10 23:48:35 +000099
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000100 "abc" If groups of two or more chars are specified, the first char
101 is the main option and the other chars are secondary options.
102 Their flags will be turned on if the main option is found even
103 if they are not specifed on the command line. For example:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000104
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000105 bb_opt_complementally = "abc";
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000106
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000107 flags = bb_getopt_ulflags(argc, argv, "abcd")
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000108
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000109 If getopt() finds "-a" on the command line, then
110 bb_getopt_ulflags's return value will be as if "-a -b -c" were
111 found.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000112
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000113 "ww" Adjacent double options have a counter associated which indicates
114 the number of occurances of the option. For example the ps applet needs:
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000115 if w is given once, GNU ps sets the width to 132,
116 if w is given more than once, it is "unlimited"
117
118 int w_counter = 0;
119 bb_opt_complementally = "ww";
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000120 bb_getopt_ulflags(argc, argv, "w", &w_counter);
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000121
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000122 if(w_counter)
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000123 width = (w_counter == 1) ? 132 : INT_MAX;
124 else
125 get_terminal_width(...&width...);
126
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000127 w_counter is a pointer to an integer. It has to be passed to
128 bb_getopt_ulflags() after all other option argument sinks.
129 For example: accept multiple -v to indicate the level of verbosity and
130 for each -b optarg, add optarg to my_b. Finally, if b is given, turn off
131 c and vice versa:
132
133 llist_t *my_b = NULL;
134 int verbose_level = 0;
135 bb_opt_complementally = "vvb*b-c:c-b";
136 bb_getopt_ulflags(argc, argv, "vb:c", &my_b, &verbose_level);
137 while (my_b) { dosomething_with(my_b->data) ; my_b = my_b->link; }
138 if (verbose_level) bb_printf("verbose\n");
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000139
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000140Special characters:
141
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000142 "-" A dash between two options causes the second of the two
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000143 to be unset (and ignored or triggered) if it is given on
144 the command line.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000145
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000146 For example:
147 The du applet has the options "-s" and "-d depth". If
148 bb_getopt_ulflags finds -s, then -d is unset or if it finds -d
149 then -s is unset. (Note: busybox implements the GNU
150 "--max-depth" option as "-d".) To obtain this behavior, you
151 set bb_opt_complementally = "s-d:d-s". Only one flag value is
152 added to bb_getopt_ulflags's return value depending on the
153 position of the options on the command line. If one of the
154 two options requires an argument pointer (":" in applet_opts
155 as in "d:") optarg is set accordingly.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000156
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000157 char *smax_print_depth;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000158
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000159 bb_opt_complementally = "s-d:d-s:x-x";
160 opt = bb_getopt_ulflags(argc, argv, "sd:x", &smax_print_depth);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000161
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000162 if (opt & 2) {
163 max_print_depth = bb_xgetularg10_bnd(smax_print_depth,
164 0, INT_MAX);
165 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000166 if(opt & 4)
167 printf("Detected odd -x usaging\n");
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000168
Bernhard Reutner-Fischer43fb3fc2005-10-05 12:23:13 +0000169 "-" A minus as the first char in a bb_opt_complementally group means to
170 convert the arguments as option.
171 For example:
172
173 bb_opt_complementally = "-:w";
174 bb_getopt_ulflags(argc, argv, "w");
175
176 Allows option 'w' to be given without a dash (./program w)
177 as well as with a dash (./program -w).
178
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000179 "~" A tilde between two options, or between an option and a group
180 of options, means that they are mutually exclusive. Unlike
181 the "-" case above, an error will be forced if the options
182 are used together.
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000183
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000184 For example:
185 The cut applet must have only one type of list specified, so
186 -b, -c and -f are mutally exclusive and should raise an error
187 if specified together. In this case you must set
188 bb_opt_complementally = "b~cf:c~bf:f~bc". If two of the
189 mutually exclusive options are found, bb_getopt_ulflags's
190 return value will have the error flag set (BB_GETOPT_ERROR) so
191 that we can check for it:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000192
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000193 if (flags & BB_GETOPT_ERROR)
194 bb_show_usage();
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000195
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000196 "!" If previous point set BB_GETOPT_ERROR, don`t return and call
197 previous example internally
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000198
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000199 "*" A star after a char in bb_opt_complementally means that the
200 option can occur multiple times:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000201
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000202 For example:
203 The grep applet can have one or more "-e pattern" arguments.
204 In this case you should use bb_getopt_ulflags() as follows:
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000205
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000206 llist_t *patterns = NULL;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000207
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000208 (this pointer must be initializated to NULL if the list is empty
209 as required by *llist_add_to(llist_t *old_head, char *new_item).)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000210
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000211 bb_opt_complementally = "e*";
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000212
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000213 bb_getopt_ulflags(argc, argv, "e:", &patterns);
214 $ grep -e user -e root /etc/passwd
215 root:x:0:0:root:/root:/bin/bash
216 user:x:500:500::/home/user:/bin/bash
Eric Andersen8876fb22003-06-20 09:01:58 +0000217*/
218
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000219const char *bb_opt_complementally;
Eric Andersen8876fb22003-06-20 09:01:58 +0000220
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000221typedef struct {
Glenn L McGrath850b05f2003-12-19 10:13:10 +0000222 unsigned char opt;
Eric Andersen8876fb22003-06-20 09:01:58 +0000223 char list_flg;
224 unsigned long switch_on;
225 unsigned long switch_off;
226 unsigned long incongruously;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000227 void **optarg; /* char **optarg or llist_t **optarg */
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000228 int *counter;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000229} t_complementally;
Eric Andersen8876fb22003-06-20 09:01:58 +0000230
231/* You can set bb_applet_long_options for parse called long options */
232
233static const struct option bb_default_long_options[] = {
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000234/* { "help", 0, NULL, '?' }, */
Eric Andersen8876fb22003-06-20 09:01:58 +0000235 { 0, 0, 0, 0 }
236};
237
238const struct option *bb_applet_long_options = bb_default_long_options;
239
Eric Andersen8876fb22003-06-20 09:01:58 +0000240unsigned long
241bb_getopt_ulflags (int argc, char **argv, const char *applet_opts, ...)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000242{
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000243 unsigned long flags = 0;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000244 t_complementally complementally[sizeof(flags) * 8 + 1];
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000245 int c;
246 const unsigned char *s;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000247 t_complementally *on_off;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000248 va_list p;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000249 const struct option *l_o;
250 char flg_show_usage_if_error = 0;
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000251 char flg_argv_is_opts = 0;
252 unsigned long trigger;
253 char **pargv = NULL;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000254
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000255 va_start (p, applet_opts);
Eric Andersen8876fb22003-06-20 09:01:58 +0000256
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000257 /* skip GNU extension */
258 s = applet_opts;
259 if(*s == '+' || *s == '-')
Eric Andersen8876fb22003-06-20 09:01:58 +0000260 s++;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000261
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000262 c = 0;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000263 on_off = complementally;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000264 for (; *s; s++) {
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000265 if(c >= (int)(sizeof(flags)*8))
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000266 break;
267 on_off->opt = *s;
268 on_off->switch_on = (1 << c);
269 on_off->list_flg = 0;
270 on_off->switch_off = 0;
271 on_off->incongruously = 0;
272 on_off->optarg = NULL;
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000273 on_off->counter = NULL;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000274 if (s[1] == ':') {
275 on_off->optarg = va_arg (p, void **);
276 do
277 s++;
278 while (s[1] == ':');
279 }
280 on_off++;
281 c++;
Eric Andersen8876fb22003-06-20 09:01:58 +0000282 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000283 on_off->opt = 0;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000284
285 for(l_o = bb_applet_long_options; l_o->name; l_o++) {
286 for(on_off = complementally; on_off->opt != 0; on_off++)
287 if(on_off->opt == l_o->val)
288 break;
289 if(on_off->opt == 0) {
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000290 if(c >= (int)(sizeof(flags)*8))
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000291 break;
292 on_off->opt = l_o->val;
293 on_off->switch_on = (1 << c);
294 on_off->list_flg = 0;
295 on_off->switch_off = 0;
296 on_off->incongruously = 0;
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000297 on_off->counter = NULL;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000298 if(l_o->has_arg != no_argument)
299 on_off->optarg = va_arg (p, void **);
300 else
301 on_off->optarg = NULL;
302 on_off++;
303 on_off->opt = 0;
304 c++;
305 }
306 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000307 c = 0;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000308 for (s = bb_opt_complementally; s && *s; s++) {
309 t_complementally *pair;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000310
311 if (*s == ':') {
312 c = 0;
313 continue;
314 }
315 if (c)
316 continue;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000317 if(*s == '!') {
318 flg_show_usage_if_error = '!';
319 continue;
320 }
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000321 if(*s == '-') {
322 flg_argv_is_opts = '-';
323 continue;
324 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000325 for (on_off = complementally; on_off->opt; on_off++)
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000326 if (on_off->opt == *s)
327 break;
328 pair = on_off;
329 for(s++; *s && *s != ':'; s++) {
330 if (*s == '-' || *s == '~') {
331 c = *s;
332 } else if(*s == '*') {
333 pair->list_flg++;
334 } else {
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000335 unsigned long *pair_switch = &(pair->switch_on);
336 if(c)
337 pair_switch = c == '-' ? &(pair->switch_off) : &(pair->incongruously);
338 for (on_off = complementally; on_off->opt; on_off++)
339 if (on_off->opt == *s) {
340 if(pair_switch == &(on_off->switch_on))
341 on_off->counter = va_arg (p, int *);
342 else
343 *pair_switch |= on_off->switch_on;
344 break;
345 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000346 }
347 }
348 s--;
Eric Andersen8876fb22003-06-20 09:01:58 +0000349 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000350
351 while ((c = getopt_long (argc, argv, applet_opts,
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000352 bb_applet_long_options, NULL)) > 0) {
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000353
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000354loop_arg_is_opt:
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000355 for (on_off = complementally; on_off->opt != c; on_off++) {
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000356 if(!on_off->opt)
357 bb_show_usage ();
358 }
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000359 if(flags & on_off->incongruously) {
360 if(flg_show_usage_if_error)
361 bb_show_usage ();
Mike Frysinger348e84c2005-05-11 00:39:03 +0000362 flags |= BB_GETOPT_ERROR;
"Vladimir N. Oleynik"27421a12005-09-05 14:46:07 +0000363 }
"Vladimir N. Oleynik"45a8ed82005-09-06 16:08:33 +0000364 trigger = on_off->switch_on & on_off->switch_off;
365 flags &= ~(on_off->switch_off ^ trigger);
366 flags |= on_off->switch_on ^ trigger;
367 flags ^= trigger;
"Vladimir N. Oleynik"be0ed3d2005-10-04 16:48:26 +0000368 if(on_off->counter)
369 (*(on_off->counter))++;
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000370 if(on_off->list_flg) {
371 *(llist_t **)(on_off->optarg) =
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000372 llist_add_to(*(llist_t **)(on_off->optarg), optarg);
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000373 } else if (on_off->optarg) {
374 *(char **)(on_off->optarg) = optarg;
375 }
"Vladimir N. Oleynik"35939d92005-10-05 10:52:47 +0000376 if(flg_argv_is_opts == 'p')
377 break;
378 }
379 if(flg_argv_is_opts) {
380 /* process argv is option, for example "ps" applet */
381 if(flg_argv_is_opts == '-') {
382 flg_argv_is_opts = 'p';
383 pargv = argv + optind;
384 }
385 while(*pargv) {
386 c = **pargv;
387 if(c == '\0') {
388 pargv++;
389 } else {
390 (*pargv)++;
391 goto loop_arg_is_opt;
392 }
393 }
Mike Frysinger2bf88a82005-04-18 22:42:58 +0000394 }
395
396 return flags;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000397}