<linux/sunrpc/svcauth.h>: Define hash_str() in terms of hashlen_string()
[linux-2.6-block.git] / include / linux / string.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_STRING_H_
2#define _LINUX_STRING_H_
3
1da177e4
LT
4
5#include <linux/compiler.h> /* for inline */
6#include <linux/types.h> /* for size_t */
7#include <linux/stddef.h> /* for NULL */
4370aa4a 8#include <stdarg.h>
607ca46e 9#include <uapi/linux/string.h>
1da177e4 10
96840aa0 11extern char *strndup_user(const char __user *, long);
610a77e0 12extern void *memdup_user(const void __user *, size_t);
e9d408e1 13extern void *memdup_user_nul(const void __user *, size_t);
96840aa0 14
1da177e4
LT
15/*
16 * Include machine specific inline routines
17 */
18#include <asm/string.h>
19
20#ifndef __HAVE_ARCH_STRCPY
21extern char * strcpy(char *,const char *);
22#endif
23#ifndef __HAVE_ARCH_STRNCPY
24extern char * strncpy(char *,const char *, __kernel_size_t);
25#endif
26#ifndef __HAVE_ARCH_STRLCPY
27size_t strlcpy(char *, const char *, size_t);
28#endif
30035e45
CM
29#ifndef __HAVE_ARCH_STRSCPY
30ssize_t __must_check strscpy(char *, const char *, size_t);
31#endif
1da177e4
LT
32#ifndef __HAVE_ARCH_STRCAT
33extern char * strcat(char *, const char *);
34#endif
35#ifndef __HAVE_ARCH_STRNCAT
36extern char * strncat(char *, const char *, __kernel_size_t);
37#endif
38#ifndef __HAVE_ARCH_STRLCAT
39extern size_t strlcat(char *, const char *, __kernel_size_t);
40#endif
41#ifndef __HAVE_ARCH_STRCMP
42extern int strcmp(const char *,const char *);
43#endif
44#ifndef __HAVE_ARCH_STRNCMP
45extern int strncmp(const char *,const char *,__kernel_size_t);
46#endif
ded220bd
DM
47#ifndef __HAVE_ARCH_STRCASECMP
48extern int strcasecmp(const char *s1, const char *s2);
49#endif
50#ifndef __HAVE_ARCH_STRNCASECMP
51extern int strncasecmp(const char *s1, const char *s2, size_t n);
52#endif
1da177e4
LT
53#ifndef __HAVE_ARCH_STRCHR
54extern char * strchr(const char *,int);
55#endif
11d200e9
GL
56#ifndef __HAVE_ARCH_STRCHRNUL
57extern char * strchrnul(const char *,int);
58#endif
1da177e4
LT
59#ifndef __HAVE_ARCH_STRNCHR
60extern char * strnchr(const char *, size_t, int);
61#endif
62#ifndef __HAVE_ARCH_STRRCHR
63extern char * strrchr(const char *,int);
64#endif
f653398c 65extern char * __must_check skip_spaces(const char *);
ca54cb8c
KM
66
67extern char *strim(char *);
68
69static inline __must_check char *strstrip(char *str)
70{
71 return strim(str);
72}
73
1da177e4 74#ifndef __HAVE_ARCH_STRSTR
d5f1fb53
LZ
75extern char * strstr(const char *, const char *);
76#endif
77#ifndef __HAVE_ARCH_STRNSTR
78extern char * strnstr(const char *, const char *, size_t);
1da177e4
LT
79#endif
80#ifndef __HAVE_ARCH_STRLEN
81extern __kernel_size_t strlen(const char *);
82#endif
83#ifndef __HAVE_ARCH_STRNLEN
84extern __kernel_size_t strnlen(const char *,__kernel_size_t);
85#endif
8833d328
KM
86#ifndef __HAVE_ARCH_STRPBRK
87extern char * strpbrk(const char *,const char *);
88#endif
89#ifndef __HAVE_ARCH_STRSEP
90extern char * strsep(char **,const char *);
91#endif
92#ifndef __HAVE_ARCH_STRSPN
93extern __kernel_size_t strspn(const char *,const char *);
94#endif
95#ifndef __HAVE_ARCH_STRCSPN
96extern __kernel_size_t strcspn(const char *,const char *);
97#endif
1da177e4
LT
98
99#ifndef __HAVE_ARCH_MEMSET
100extern void * memset(void *,int,__kernel_size_t);
101#endif
102#ifndef __HAVE_ARCH_MEMCPY
103extern void * memcpy(void *,const void *,__kernel_size_t);
104#endif
105#ifndef __HAVE_ARCH_MEMMOVE
106extern void * memmove(void *,const void *,__kernel_size_t);
107#endif
108#ifndef __HAVE_ARCH_MEMSCAN
109extern void * memscan(void *,int,__kernel_size_t);
110#endif
111#ifndef __HAVE_ARCH_MEMCMP
112extern int memcmp(const void *,const void *,__kernel_size_t);
113#endif
114#ifndef __HAVE_ARCH_MEMCHR
115extern void * memchr(const void *,int,__kernel_size_t);
116#endif
79824820 117void *memchr_inv(const void *s, int c, size_t n);
94df2904 118char *strreplace(char *s, char old, char new);
1da177e4 119
a4bb1e43
AH
120extern void kfree_const(const void *x);
121
dd0fc66f 122extern char *kstrdup(const char *s, gfp_t gfp);
a4bb1e43 123extern const char *kstrdup_const(const char *s, gfp_t gfp);
1e66df3e 124extern char *kstrndup(const char *s, size_t len, gfp_t gfp);
1a2f67b4 125extern void *kmemdup(const void *src, size_t len, gfp_t gfp);
543537bd 126
d84d1cc7
JF
127extern char **argv_split(gfp_t gfp, const char *str, int *argcp);
128extern void argv_free(char **argv);
129
34990cf7 130extern bool sysfs_streq(const char *s1, const char *s2);
ef951599
KC
131extern int kstrtobool(const char *s, bool *res);
132static inline int strtobool(const char *s, bool *res)
133{
134 return kstrtobool(s, res);
135}
34990cf7 136
56b06081
AS
137int match_string(const char * const *array, size_t n, const char *string);
138
4370aa4a
LJ
139#ifdef CONFIG_BINARY_PRINTF
140int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args);
141int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf);
142int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...) __printf(3, 4);
143#endif
144
e108526e 145extern ssize_t memory_read_from_buffer(void *to, size_t count, loff_t *ppos,
d4c5efdb 146 const void *from, size_t available);
e108526e 147
66f92cf9
RR
148/**
149 * strstarts - does @str start with @prefix?
150 * @str: string to examine
151 * @prefix: prefix to look for.
152 */
153static inline bool strstarts(const char *str, const char *prefix)
154{
155 return strncmp(str, prefix, strlen(prefix)) == 0;
156}
639b9e34 157
d4c5efdb
DB
158size_t memweight(const void *ptr, size_t bytes);
159void memzero_explicit(void *s, size_t count);
639b9e34 160
b18888ab
AS
161/**
162 * kbasename - return the last part of a pathname.
163 *
164 * @path: path to extract the filename from.
165 */
166static inline const char *kbasename(const char *path)
167{
168 const char *tail = strrchr(path, '/');
169 return tail ? tail + 1 : path;
170}
171
1da177e4 172#endif /* _LINUX_STRING_H_ */