diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-25 18:35:28 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-09-25 18:35:28 +0000 |
commit | 6a5377ac14bec2f2ae62c4ec085ff3b149cc11ad (patch) | |
tree | bb2200121abb55f06facbe8793c649ae90f53717 /libbb/skip_whitespace.c | |
parent | ea7645bab62c6f68c755cf717662bceaa04858ed (diff) | |
download | busybox-w32-6a5377ac14bec2f2ae62c4ec085ff3b149cc11ad.tar.gz busybox-w32-6a5377ac14bec2f2ae62c4ec085ff3b149cc11ad.tar.bz2 busybox-w32-6a5377ac14bec2f2ae62c4ec085ff3b149cc11ad.zip |
documentation bits in comments, no code changes
Diffstat (limited to 'libbb/skip_whitespace.c')
-rw-r--r-- | libbb/skip_whitespace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/skip_whitespace.c b/libbb/skip_whitespace.c index bdfb97d70..87b5f23ba 100644 --- a/libbb/skip_whitespace.c +++ b/libbb/skip_whitespace.c | |||
@@ -11,7 +11,7 @@ | |||
11 | 11 | ||
12 | char *skip_whitespace(const char *s) | 12 | char *skip_whitespace(const char *s) |
13 | { | 13 | { |
14 | /* NB: isspace('0') returns 0 */ | 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; |