diff options
author | Pekka Enberg <penberg@cs.helsinki.fi> | 2006-06-23 05:05:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 10:43:06 -0400 |
commit | 481fad483487ea967fe20bbc9e565d787f7bf20f (patch) | |
tree | 3a76336443129975d9f7ba99f9a9ea1c494315e5 /include/linux/string.h | |
parent | 3fa2164d03fb7af17fcfe4f8800dd754fbd99ff7 (diff) |
[PATCH] strstrip() API
Add a new strstrip() function to lib/string.c for removing leading and
trailing whitespace from a string.
Cc: Michael Holzheu <holzheu@de.ibm.com>
Acked-by: Ingo Oeser <ioe-lkml@rameria.de>
Acked-by: Joern Engel <joern@wohnheim.fh-wedel.de>
Cc: Corey Minyard <minyard@acm.org>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Acked-by: Michael Holzheu <HOLZHEU@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/string.h')
-rw-r--r-- | include/linux/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/string.h b/include/linux/string.h index c61306da8c52..e4c755860316 100644 --- a/include/linux/string.h +++ b/include/linux/string.h | |||
@@ -56,6 +56,7 @@ extern char * strnchr(const char *, size_t, int); | |||
56 | #ifndef __HAVE_ARCH_STRRCHR | 56 | #ifndef __HAVE_ARCH_STRRCHR |
57 | extern char * strrchr(const char *,int); | 57 | extern char * strrchr(const char *,int); |
58 | #endif | 58 | #endif |
59 | extern char * strstrip(char *); | ||
59 | #ifndef __HAVE_ARCH_STRSTR | 60 | #ifndef __HAVE_ARCH_STRSTR |
60 | extern char * strstr(const char *,const char *); | 61 | extern char * strstr(const char *,const char *); |
61 | #endif | 62 | #endif |