diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-26 02:51:29 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-12-26 02:51:29 +0000 |
commit | 7495931c75e3d024efd309f6afa0de0d61a56602 (patch) | |
tree | 69a866577fc99e3e0c3153f486f22a2e675028a0 /libbb | |
parent | 784a7e6c7f37646c30a9dbe8ca2cafb50f7bd41e (diff) | |
download | busybox-w32-7495931c75e3d024efd309f6afa0de0d61a56602.tar.gz busybox-w32-7495931c75e3d024efd309f6afa0de0d61a56602.tar.bz2 busybox-w32-7495931c75e3d024efd309f6afa0de0d61a56602.zip |
leftover of e2fsck surgery
git-svn-id: svn://busybox.net/trunk/busybox@17078 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 | } | ||