RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / linux / string.h
blobd284ce54b73ad6d258852a9c490dac250b71888a
1 #ifndef _LINUX_STRING_H_
2 #define _LINUX_STRING_H_
4 /* We don't want strings.h stuff being user by user stuff by accident */
6 #ifdef __KERNEL__
8 #include <linux/compiler.h> /* for inline */
9 #include <linux/types.h> /* for size_t */
10 #include <linux/stddef.h> /* for NULL */
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
16 extern char *strndup_user(const char __user *, long);
19 * Include machine specific inline routines
21 #include <asm/string.h>
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
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
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
65 extern char * skip_spaces(const char *);
66 extern char * strstrip(char *);
67 #ifndef __HAVE_ARCH_STRSTR
68 extern char * strstr(const char *,const char *);
69 #endif
70 #ifndef __HAVE_ARCH_STRLEN
71 extern __kernel_size_t strlen(const char *);
72 #endif
73 #ifndef __HAVE_ARCH_STRNLEN
74 extern __kernel_size_t strnlen(const char *,__kernel_size_t);
75 #endif
76 #ifndef __HAVE_ARCH_STRPBRK
77 extern char * strpbrk(const char *,const char *);
78 #endif
79 #ifndef __HAVE_ARCH_STRSEP
80 extern char * strsep(char **,const char *);
81 #endif
82 #ifndef __HAVE_ARCH_STRSPN
83 extern __kernel_size_t strspn(const char *,const char *);
84 #endif
85 #ifndef __HAVE_ARCH_STRCSPN
86 extern __kernel_size_t strcspn(const char *,const char *);
87 #endif
89 #ifndef __HAVE_ARCH_MEMSET
90 extern void * memset(void *,int,__kernel_size_t);
91 #endif
92 #ifndef __HAVE_ARCH_MEMCPY
93 extern void * memcpy(void *,const void *,__kernel_size_t);
94 #endif
95 #ifndef __HAVE_ARCH_MEMMOVE
96 extern void * memmove(void *,const void *,__kernel_size_t);
97 #endif
98 #ifndef __HAVE_ARCH_MEMSCAN
99 extern void * memscan(void *,int,__kernel_size_t);
100 #endif
101 #ifndef __HAVE_ARCH_MEMCMP
102 extern int memcmp(const void *,const void *,__kernel_size_t);
103 #endif
104 #ifndef __HAVE_ARCH_MEMCHR
105 extern void * memchr(const void *,int,__kernel_size_t);
106 #endif
108 extern char *kstrdup(const char *s, gfp_t gfp);
109 extern char *kstrndup(const char *s, size_t len, gfp_t gfp);
110 extern void *kmemdup(const void *src, size_t len, gfp_t gfp);
112 #ifdef __cplusplus
114 #endif
116 #endif
117 #endif /* _LINUX_STRING_H_ */