diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/dump.c | 4 | ||||
-rw-r--r-- | libbb/skip_whitespace.c | 9 |
2 files changed, 11 insertions, 2 deletions
diff --git a/libbb/dump.c b/libbb/dump.c index d6e31b9b1..06b73c955 100644 --- a/libbb/dump.c +++ b/libbb/dump.c | |||
@@ -724,7 +724,9 @@ void bb_dump_add(const char *fmt) | |||
724 | 724 | ||
725 | /* byte count */ | 725 | /* byte count */ |
726 | if (isdigit(*p)) { | 726 | if (isdigit(*p)) { |
727 | for (savep = p; isdigit(*p); ++p); | 727 | // TODO: use bb_strtou |
728 | savep = p; | ||
729 | do p++; while(isdigit(*p)); | ||
728 | if (!isspace(*p)) { | 730 | if (!isspace(*p)) { |
729 | bb_error_msg_and_die("bad format {%s}", fmt); | 731 | bb_error_msg_and_die("bad format {%s}", fmt); |
730 | } | 732 | } |
diff --git a/libbb/skip_whitespace.c b/libbb/skip_whitespace.c index 02c1f5828..bdfb97d70 100644 --- a/libbb/skip_whitespace.c +++ b/libbb/skip_whitespace.c | |||
@@ -7,12 +7,19 @@ | |||
7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include <ctype.h> | ||
11 | #include "libbb.h" | 10 | #include "libbb.h" |
12 | 11 | ||
13 | char *skip_whitespace(const char *s) | 12 | char *skip_whitespace(const char *s) |
14 | { | 13 | { |
14 | /* NB: isspace('0') returns 0 */ | ||
15 | while (isspace(*s)) ++s; | 15 | while (isspace(*s)) ++s; |
16 | 16 | ||
17 | return (char *) s; | 17 | return (char *) s; |
18 | } | 18 | } |
19 | |||
20 | char *skip_non_whitespace(const char *s) | ||
21 | { | ||
22 | while (*s && !isspace(*s)) ++s; | ||
23 | |||
24 | return (char *) s; | ||
25 | } | ||