diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-22 19:41:45 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-22 19:41:45 +0200 |
commit | f125b6d341b06fda5412b82d23e486100e107eaa (patch) | |
tree | adf00d5ed93c623018fbcf6603ce941e401a99f3 /libbb/skip_whitespace.c | |
parent | 46e364dbfebee49f65ffa92a66279df6a408e4f0 (diff) | |
download | busybox-w32-f125b6d341b06fda5412b82d23e486100e107eaa.tar.gz busybox-w32-f125b6d341b06fda5412b82d23e486100e107eaa.tar.bz2 busybox-w32-f125b6d341b06fda5412b82d23e486100e107eaa.zip |
*: use better isspace implementation
function old new delta
asciifile 90 106 +16
expand 653 658 +5
skip_non_whitespace 21 25 +4
bb_iswspace 25 28 +3
readcmd 1071 1072 +1
find_range 496 497 +1
singlemount 772 771 -1
ifupdown_main 2134 2133 -1
edir 370 369 -1
volume_id_set_label_string 82 79 -3
trim 85 82 -3
rtc_adjtime_is_utc 141 138 -3
rewrite 1039 1036 -3
do_cmd 4465 4462 -3
bb_dump_add 358 355 -3
awk_split 553 550 -3
fbset_main 1273 1268 -5
skip_thing 259 253 -6
get_trimmed_slice 46 39 -7
bb__parsegrent 245 238 -7
parse_file_cmd 116 108 -8
check 1532 1523 -9
bb__pgsreader 198 188 -10
dot_skip_over_ws 61 46 -15
colon 3032 3012 -20
if_readlist_proc 655 634 -21
normalize 193 165 -28
add_cmd 1162 1133 -29
get_key 528 476 -52
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 6/23 up/down: 30/-241) Total: -211 bytes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/skip_whitespace.c')
-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 | } |