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/skip_whitespace.c | |
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 '')
-rw-r--r-- | libbb/skip_whitespace.c | 9 |
1 files changed, 8 insertions, 1 deletions
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 | } | ||