diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-04 22:49:01 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-04 22:49:01 +0000 |
commit | 3c0364f3911ec9f43e1c8c96ec2c8e30b1b52c47 (patch) | |
tree | 7ad1918c2c76df8f723195e20e9e95d21ef7c4e8 | |
parent | 4fd382ea29c6492f4776aa29b8b298d3c4a98d01 (diff) | |
download | busybox-w32-3c0364f3911ec9f43e1c8c96ec2c8e30b1b52c47.tar.gz busybox-w32-3c0364f3911ec9f43e1c8c96ec2c8e30b1b52c47.tar.bz2 busybox-w32-3c0364f3911ec9f43e1c8c96ec2c8e30b1b52c47.zip |
Patch from Larry Doolittle to eliminate needless thrashing
about when trimming long strings with lots of trailing white
space.
-rw-r--r-- | libbb/trim.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libbb/trim.c b/libbb/trim.c index be97d4924..78cf235dd 100644 --- a/libbb/trim.c +++ b/libbb/trim.c | |||
@@ -33,11 +33,11 @@ | |||
33 | 33 | ||
34 | void trim(char *s) | 34 | void trim(char *s) |
35 | { | 35 | { |
36 | int len; | 36 | int len=strlen(s); |
37 | 37 | ||
38 | /* trim trailing whitespace */ | 38 | /* trim trailing whitespace */ |
39 | while ( (len=strlen(s)) >= 1 && isspace(s[len-1])) | 39 | while ( len > 0 && isspace(s[len-1])) |
40 | s[len-1]='\0'; | 40 | s[--len]='\0'; |
41 | 41 | ||
42 | /* trim leading whitespace */ | 42 | /* trim leading whitespace */ |
43 | memmove(s, &s[strspn(s, " \n\r\t\v")], len); | 43 | memmove(s, &s[strspn(s, " \n\r\t\v")], len); |