|
4 | 4 | #include <stdlib.h>
|
5 | 5 | #include <string.h>
|
6 | 6 |
|
7 |
| -#include "entab.h" |
| 7 | +#include "tabber.h" |
8 | 8 |
|
9 | 9 | static char usage[] =
|
10 | 10 | "usage: $tabber -b <entab|detab> -m <interval+start> -l <stops>\n";
|
@@ -121,19 +121,16 @@ static int parse_l(int* const i, const int argc, char** const argv,
|
121 | 121 | }
|
122 | 122 |
|
123 | 123 | // Read list of tab stop elements; verify that each tabstop is a number,
|
124 |
| - // returning when we find the first one that isn't. Start at arg |
125 |
| - // immediately following -l |
126 |
| - char* current_stop = argv[++(*i)]; |
| 124 | + // returning when we find the first one that isn't. |
| 125 | + char* current_stop = NULL; |
| 126 | + (*i)++; // advance from -l to first tab stop |
127 | 127 | while (*i < argc) {
|
128 |
| - // verify current stop is a number; quit if not. |
129 |
| - for (int k = 0; k < (int)strlen(current_stop); k++) { |
130 |
| - if (isdigit(current_stop[k]) == 0) { |
131 |
| - return 0; |
132 |
| - } |
| 128 | + current_stop = argv[(*i)++]; |
| 129 | + if (isdigits(current_stop, (int)strlen(current_stop))) { |
| 130 | + stop_list[stop_list_len++] = atoi(current_stop); |
| 131 | + } else { |
| 132 | + break; |
133 | 133 | }
|
134 |
| - // copy stop to stop list, advance to next arg |
135 |
| - stop_list[stop_list_len++] = atoi(current_stop); |
136 |
| - current_stop = argv[++(*i)]; |
137 | 134 | }
|
138 | 135 |
|
139 | 136 | *tab_stops = stop_list;
|
@@ -170,6 +167,9 @@ int parse_flags(const int argc, char** const argv, int** tab_stops,
|
170 | 167 | if (parse_l(&i, argc, argv, tab_stops, tab_stops_len) == -1) {
|
171 | 168 | return -1;
|
172 | 169 | }
|
| 170 | + if (tab_stops == NULL) { |
| 171 | + return -1; |
| 172 | + } |
173 | 173 | break;
|
174 | 174 | default:
|
175 | 175 | printf("tabber: error - invalid flag %s\n", current_arg);
|
|
0 commit comments