diff options
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/skip_whitespace.c | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/libbb/skip_whitespace.c b/libbb/skip_whitespace.c index e85f3859f..7b123261b 100644 --- a/libbb/skip_whitespace.c +++ b/libbb/skip_whitespace.c | |||
@@ -11,15 +11,22 @@ | |||
11 | 11 | ||
12 | char* FAST_FUNC skip_whitespace(const char *s) | 12 | char* FAST_FUNC skip_whitespace(const char *s) |
13 | { | 13 | { |
14 | /* NB: isspace('\0') returns 0 */ | 14 | /* In POSIX/C locale (the only locale we care about: do we REALLY want |
15 | while (isspace(*s)) ++s; | 15 | * to allow Unicode whitespace in, say, .conf files? nuts!) |
16 | * isspace is only these chars: "\t\n\v\f\r" and space. | ||
17 | * "\t\n\v\f\r" happen to have ASCII codes 9,10,11,12,13. | ||
18 | * Use that. | ||
19 | */ | ||
20 | while (*s == ' ' || (unsigned char)(*s - 9) <= (13 - 9)) | ||
21 | s++; | ||
16 | 22 | ||
17 | return (char *) s; | 23 | return (char *) s; |
18 | } | 24 | } |
19 | 25 | ||
20 | char* FAST_FUNC skip_non_whitespace(const char *s) | 26 | char* FAST_FUNC skip_non_whitespace(const char *s) |
21 | { | 27 | { |
22 | while (*s && !isspace(*s)) ++s; | 28 | while (*s != '\0' && *s != ' ' && (unsigned char)(*s - 9) > (13 - 9)) |
29 | s++; | ||
23 | 30 | ||
24 | return (char *) s; | 31 | return (char *) s; |
25 | } | 32 | } |