diff options
author | Matt Kraai | 2001-02-01 16:49:30 +0000 |
---|---|---|
committer | Matt Kraai | 2001-02-01 16:49:30 +0000 |
commit | 05e782ddd3dc58245c889529bb8aeeaddf24bf71 (patch) | |
tree | 8fbb91ca75358923724889a558c954cffdf10136 /utility.c | |
parent | bd018b1babf0521b8e740abb6473133c1c4c35d2 (diff) | |
download | busybox-05e782ddd3dc58245c889529bb8aeeaddf24bf71.zip busybox-05e782ddd3dc58245c889529bb8aeeaddf24bf71.tar.gz |
Fix wget error message and add (and use) chomp library function.
Diffstat (limited to 'utility.c')
-rw-r--r-- | utility.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1760,6 +1760,19 @@ char *format(unsigned long val, unsigned long hr) } #endif +#if defined(BB_GREP) || defined(BB_HOSTNAME) || defined(BB_SED) || defined(BB_TAR) || defined(BB_WGET) || defined(BB_XARGS) +void chomp(char *s) +{ + size_t len = strlen(s); + + if (len == 0) + return; + + if (s[len-1] == '\n') + s[len-1] = '\0'; +} +#endif + /* END CODE */ /* Local Variables: |