aboutsummaryrefslogtreecommitdiff
path: root/lib/args.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-11-19 17:29:35 -0500
committerRob Landley <rob@landley.net>2006-11-19 17:29:35 -0500
commit2a813ffadf19957f1798cfc68a3ea78199ce1f49 (patch)
treeefd612bca3c4cd5fdfb21fdf5b01ee85c82353f9 /lib/args.c
parent8324b89598b2aee0957a0378f0f63ff5755498be (diff)
downloadtoybox-2a813ffadf19957f1798cfc68a3ea78199ce1f49.tar.gz
Add one if() that has lots of whitespace fallout.
Diffstat (limited to 'lib/args.c')
-rw-r--r--lib/args.c132
1 files changed, 67 insertions, 65 deletions
diff --git a/lib/args.c b/lib/args.c
index 09b04d83..8b105e00 100644
--- a/lib/args.c
+++ b/lib/args.c
@@ -130,74 +130,76 @@ void get_optflags(void)
long *nextarg = (long *)&toy;
char *options = toys.which->options;
- // Parse leading special behavior indicators
- for (;;) {
- if (*options == '+') stopearly++;
- else if (*options == '<') minargs=*(++options)-'0';
- else if (*options == '>') maxargs=*(++options)-'0';
- else if (*options == '#') gof.noerror++;
- else if (*options == '&') nodash++;
- else break;
- options++;
- }
+ if (options) {
+ // Parse leading special behavior indicators
+ for (;;) {
+ if (*options == '+') stopearly++;
+ else if (*options == '<') minargs=*(++options)-'0';
+ else if (*options == '>') maxargs=*(++options)-'0';
+ else if (*options == '#') gof.noerror++;
+ else if (*options == '&') nodash++;
+ else break;
+ options++;
+ }
+
+ // Parse rest of opts into array
+ while (*options) {
+
+ // Allocate a new option entry when necessary
+ if (!gof.this) {
+ gof.this = xzalloc(sizeof(struct opts));
+ gof.this->next = gof.opts;
+ gof.opts = gof.this;
+ }
+ // Each option must start with (or an option character. (Bare
+ // longopts only come at the start of the string.)
+ if (*options == '(') {
+ char *end;
+ struct longopts *lo = xmalloc(sizeof(struct longopts));
+
+ // Find the end of the longopt
+ for (end = ++options; *end && *end != ')'; end++);
+ if (CFG_DEBUG && !*end) error_exit("Unterminated optstring");
+
+ // Allocate and init a new struct longopts
+ lo = xmalloc(sizeof(struct longopts));
+ lo->next = longopts;
+ lo->opt = gof.this;
+ lo->str = options;
+ lo->len = end-options;
+ longopts = lo;
+ options = end;
+
+ // For leading longopts (with no corresponding short opt), note
+ // that this option struct has been used.
+ gof.this->shift++;
+
+ // If this is the start of a new option that wasn't a longopt,
+
+ } else if (index(":*?@", *options)) {
+ gof.this->type |= *options;
+ // Pointer and long guaranteed to be the same size by LP64.
+ *(++nextarg) = 0;
+ gof.this->arg = (void *)nextarg;
+ } else if (*options == '|') {
+ } else if (*options == '+') {
+ } else if (*options == '~') {
+ } else if (*options == '!') {
+ } else if (*options == '[') {
+
+ // At this point, we've hit the end of the previous option. The
+ // current character is the start of a new option. If we've already
+ // assigned an option to this struct, loop to allocate a new one.
+ // (It'll get back here afterwards.)
+ } else if(gof.this->shift || gof.this->c) {
+ gof.this = NULL;
+ continue;
- // Parse rest of opts into array
- while (*options) {
+ // Claim this option, loop to see what's after it.
+ } else gof.this->c = *options;
- // Allocate a new option entry when necessary
- if (!gof.this) {
- gof.this = xzalloc(sizeof(struct opts));
- gof.this->next = gof.opts;
- gof.opts = gof.this;
+ options++;
}
- // Each option must start with (or an option character. (Bare
- // longopts only come at the start of the string.)
- if (*options == '(') {
- char *end;
- struct longopts *lo = xmalloc(sizeof(struct longopts));
-
- // Find the end of the longopt
- for (end = ++options; *end && *end != ')'; end++);
- if (CFG_DEBUG && !*end) error_exit("Unterminated optstring");
-
- // Allocate and init a new struct longopts
- lo = xmalloc(sizeof(struct longopts));
- lo->next = longopts;
- lo->opt = gof.this;
- lo->str = options;
- lo->len = end-options;
- longopts = lo;
- options = end;
-
- // For leading longopts (with no corresponding short opt), note
- // that this option struct has been used.
- gof.this->shift++;
-
- // If this is the start of a new option that wasn't a longopt,
-
- } else if (index(":*?@", *options)) {
- gof.this->type |= *options;
- // Pointer and long guaranteed to be the same size by LP64.
- *(++nextarg) = 0;
- gof.this->arg = (void *)nextarg;
- } else if (*options == '|') {
- } else if (*options == '+') {
- } else if (*options == '~') {
- } else if (*options == '!') {
- } else if (*options == '[') {
-
- // At this point, we've hit the end of the previous option. The
- // current character is the start of a new option. If we've already
- // assigned an option to this struct, loop to allocate a new one.
- // (It'll get back here afterwards.)
- } else if(gof.this->shift || gof.this->c) {
- gof.this = NULL;
- continue;
-
- // Claim this option, loop to see what's after it.
- } else gof.this->c = *options;
-
- options++;
}
// Initialize shift bits (have to calculate this ahead of time because