| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_STRING_H_ | 
 | 2 | #define _LINUX_STRING_H_ | 
 | 3 |  | 
| Jeff Garzik | 4ac9657 | 2008-11-02 09:51:27 -0500 | [diff] [blame] | 4 | /* We don't want strings.h stuff being used by user stuff by accident */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 |  | 
| David S. Miller | 97ef1bb | 2007-10-30 21:44:00 -0700 | [diff] [blame] | 6 | #ifndef __KERNEL__ | 
 | 7 | #include <string.h> | 
 | 8 | #else | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 |  | 
 | 10 | #include <linux/compiler.h>	/* for inline */ | 
 | 11 | #include <linux/types.h>	/* for size_t */ | 
 | 12 | #include <linux/stddef.h>	/* for NULL */ | 
| Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 13 | #include <stdarg.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 |  | 
| Davi Arnaut | 96840aa | 2006-03-24 03:18:42 -0800 | [diff] [blame] | 15 | extern char *strndup_user(const char __user *, long); | 
| Li Zefan | 610a77e | 2009-03-31 15:23:16 -0700 | [diff] [blame] | 16 | extern void *memdup_user(const void __user *, size_t); | 
| Davi Arnaut | 96840aa | 2006-03-24 03:18:42 -0800 | [diff] [blame] | 17 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | /* | 
 | 19 |  * Include machine specific inline routines | 
 | 20 |  */ | 
 | 21 | #include <asm/string.h> | 
 | 22 |  | 
 | 23 | #ifndef __HAVE_ARCH_STRCPY | 
 | 24 | extern char * strcpy(char *,const char *); | 
 | 25 | #endif | 
 | 26 | #ifndef __HAVE_ARCH_STRNCPY | 
 | 27 | extern char * strncpy(char *,const char *, __kernel_size_t); | 
 | 28 | #endif | 
 | 29 | #ifndef __HAVE_ARCH_STRLCPY | 
 | 30 | size_t strlcpy(char *, const char *, size_t); | 
 | 31 | #endif | 
 | 32 | #ifndef __HAVE_ARCH_STRCAT | 
 | 33 | extern char * strcat(char *, const char *); | 
 | 34 | #endif | 
 | 35 | #ifndef __HAVE_ARCH_STRNCAT | 
 | 36 | extern char * strncat(char *, const char *, __kernel_size_t); | 
 | 37 | #endif | 
 | 38 | #ifndef __HAVE_ARCH_STRLCAT | 
 | 39 | extern size_t strlcat(char *, const char *, __kernel_size_t); | 
 | 40 | #endif | 
 | 41 | #ifndef __HAVE_ARCH_STRCMP | 
 | 42 | extern int strcmp(const char *,const char *); | 
 | 43 | #endif | 
 | 44 | #ifndef __HAVE_ARCH_STRNCMP | 
 | 45 | extern int strncmp(const char *,const char *,__kernel_size_t); | 
 | 46 | #endif | 
 | 47 | #ifndef __HAVE_ARCH_STRNICMP | 
 | 48 | extern int strnicmp(const char *, const char *, __kernel_size_t); | 
 | 49 | #endif | 
| David S. Miller | ded220b | 2007-03-29 01:18:42 -0700 | [diff] [blame] | 50 | #ifndef __HAVE_ARCH_STRCASECMP | 
 | 51 | extern int strcasecmp(const char *s1, const char *s2); | 
 | 52 | #endif | 
 | 53 | #ifndef __HAVE_ARCH_STRNCASECMP | 
 | 54 | extern int strncasecmp(const char *s1, const char *s2, size_t n); | 
 | 55 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #ifndef __HAVE_ARCH_STRCHR | 
 | 57 | extern char * strchr(const char *,int); | 
 | 58 | #endif | 
 | 59 | #ifndef __HAVE_ARCH_STRNCHR | 
 | 60 | extern char * strnchr(const char *, size_t, int); | 
 | 61 | #endif | 
 | 62 | #ifndef __HAVE_ARCH_STRRCHR | 
 | 63 | extern char * strrchr(const char *,int); | 
 | 64 | #endif | 
| Pekka Enberg | 481fad4 | 2006-06-23 02:05:44 -0700 | [diff] [blame] | 65 | extern char * strstrip(char *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | #ifndef __HAVE_ARCH_STRSTR | 
 | 67 | extern char * strstr(const char *,const char *); | 
 | 68 | #endif | 
 | 69 | #ifndef __HAVE_ARCH_STRLEN | 
 | 70 | extern __kernel_size_t strlen(const char *); | 
 | 71 | #endif | 
 | 72 | #ifndef __HAVE_ARCH_STRNLEN | 
 | 73 | extern __kernel_size_t strnlen(const char *,__kernel_size_t); | 
 | 74 | #endif | 
| Kyle McMartin | 8833d32 | 2006-04-10 22:53:57 -0700 | [diff] [blame] | 75 | #ifndef __HAVE_ARCH_STRPBRK | 
 | 76 | extern char * strpbrk(const char *,const char *); | 
 | 77 | #endif | 
 | 78 | #ifndef __HAVE_ARCH_STRSEP | 
 | 79 | extern char * strsep(char **,const char *); | 
 | 80 | #endif | 
 | 81 | #ifndef __HAVE_ARCH_STRSPN | 
 | 82 | extern __kernel_size_t strspn(const char *,const char *); | 
 | 83 | #endif | 
 | 84 | #ifndef __HAVE_ARCH_STRCSPN | 
 | 85 | extern __kernel_size_t strcspn(const char *,const char *); | 
 | 86 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 |  | 
 | 88 | #ifndef __HAVE_ARCH_MEMSET | 
 | 89 | extern void * memset(void *,int,__kernel_size_t); | 
 | 90 | #endif | 
 | 91 | #ifndef __HAVE_ARCH_MEMCPY | 
 | 92 | extern void * memcpy(void *,const void *,__kernel_size_t); | 
 | 93 | #endif | 
 | 94 | #ifndef __HAVE_ARCH_MEMMOVE | 
 | 95 | extern void * memmove(void *,const void *,__kernel_size_t); | 
 | 96 | #endif | 
 | 97 | #ifndef __HAVE_ARCH_MEMSCAN | 
 | 98 | extern void * memscan(void *,int,__kernel_size_t); | 
 | 99 | #endif | 
 | 100 | #ifndef __HAVE_ARCH_MEMCMP | 
 | 101 | extern int memcmp(const void *,const void *,__kernel_size_t); | 
 | 102 | #endif | 
 | 103 | #ifndef __HAVE_ARCH_MEMCHR | 
 | 104 | extern void * memchr(const void *,int,__kernel_size_t); | 
 | 105 | #endif | 
 | 106 |  | 
| Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 107 | extern char *kstrdup(const char *s, gfp_t gfp); | 
| Jeremy Fitzhardinge | 1e66df3 | 2007-07-17 18:37:02 -0700 | [diff] [blame] | 108 | extern char *kstrndup(const char *s, size_t len, gfp_t gfp); | 
| Alexey Dobriyan | 1a2f67b | 2006-09-30 23:27:20 -0700 | [diff] [blame] | 109 | extern void *kmemdup(const void *src, size_t len, gfp_t gfp); | 
| Paulo Marques | 543537b | 2005-06-23 00:09:02 -0700 | [diff] [blame] | 110 |  | 
| Jeremy Fitzhardinge | d84d1cc | 2007-07-17 18:37:02 -0700 | [diff] [blame] | 111 | extern char **argv_split(gfp_t gfp, const char *str, int *argcp); | 
 | 112 | extern void argv_free(char **argv); | 
 | 113 |  | 
| David Brownell | 34990cf | 2008-05-01 04:34:42 -0700 | [diff] [blame] | 114 | extern bool sysfs_streq(const char *s1, const char *s2); | 
 | 115 |  | 
| Lai Jiangshan | 4370aa4 | 2009-03-06 17:21:46 +0100 | [diff] [blame] | 116 | #ifdef CONFIG_BINARY_PRINTF | 
 | 117 | int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args); | 
 | 118 | int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf); | 
 | 119 | int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...) __printf(3, 4); | 
 | 120 | #endif | 
 | 121 |  | 
| Akinobu Mita | e108526e | 2008-07-23 21:26:44 -0700 | [diff] [blame] | 122 | extern ssize_t memory_read_from_buffer(void *to, size_t count, loff_t *ppos, | 
 | 123 | 			const void *from, size_t available); | 
 | 124 |  | 
| Rusty Russell | 66f92cf | 2009-03-31 13:05:36 -0600 | [diff] [blame] | 125 | /** | 
 | 126 |  * strstarts - does @str start with @prefix? | 
 | 127 |  * @str: string to examine | 
 | 128 |  * @prefix: prefix to look for. | 
 | 129 |  */ | 
 | 130 | static inline bool strstarts(const char *str, const char *prefix) | 
 | 131 | { | 
 | 132 | 	return strncmp(str, prefix, strlen(prefix)) == 0; | 
 | 133 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | #endif | 
 | 135 | #endif /* _LINUX_STRING_H_ */ |