diff options
Diffstat (limited to 'include/linux/string.h')
| -rw-r--r-- | include/linux/string.h | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/include/linux/string.h b/include/linux/string.h index 62390399b..9a8cbc24c 100644 --- a/include/linux/string.h +++ b/include/linux/string.h @@ -47,6 +47,10 @@ extern char * strchr(const char *,int);  #ifndef __HAVE_ARCH_STRRCHR  extern char * strrchr(const char *,int);  #endif +extern char * skip_spaces(const char *); + +extern char *strim(char *); +  #ifndef __HAVE_ARCH_STRSTR  extern char * strstr(const char *,const char *);  #endif |