blob: a8d90db9c4b058626b2d5ddcc84f3fa5d16561aa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_STRING_H_
2#define _LINUX_STRING_H_
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5#include <linux/compiler.h> /* for inline */
6#include <linux/types.h> /* for size_t */
7#include <linux/stddef.h> /* for NULL */
Lai Jiangshan4370aa42009-03-06 17:21:46 +01008#include <stdarg.h>
David Howells607ca462012-10-13 10:46:48 +01009#include <uapi/linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Davi Arnaut96840aa2006-03-24 03:18:42 -080011extern char *strndup_user(const char __user *, long);
Li Zefan610a77e2009-03-31 15:23:16 -070012extern void *memdup_user(const void __user *, size_t);
Davi Arnaut96840aa2006-03-24 03:18:42 -080013
Linus Torvalds1da177e2005-04-16 15:20:36 -070014/*
15 * Include machine specific inline routines
16 */
17#include <asm/string.h>
18
19#ifndef __HAVE_ARCH_STRCPY
20extern char * strcpy(char *,const char *);
21#endif
22#ifndef __HAVE_ARCH_STRNCPY
23extern char * strncpy(char *,const char *, __kernel_size_t);
24#endif
25#ifndef __HAVE_ARCH_STRLCPY
26size_t strlcpy(char *, const char *, size_t);
27#endif
28#ifndef __HAVE_ARCH_STRCAT
29extern char * strcat(char *, const char *);
30#endif
31#ifndef __HAVE_ARCH_STRNCAT
32extern char * strncat(char *, const char *, __kernel_size_t);
33#endif
34#ifndef __HAVE_ARCH_STRLCAT
35extern size_t strlcat(char *, const char *, __kernel_size_t);
36#endif
37#ifndef __HAVE_ARCH_STRCMP
38extern int strcmp(const char *,const char *);
39#endif
40#ifndef __HAVE_ARCH_STRNCMP
41extern int strncmp(const char *,const char *,__kernel_size_t);
42#endif
David S. Millerded220b2007-03-29 01:18:42 -070043#ifndef __HAVE_ARCH_STRCASECMP
44extern int strcasecmp(const char *s1, const char *s2);
45#endif
46#ifndef __HAVE_ARCH_STRNCASECMP
47extern int strncasecmp(const char *s1, const char *s2, size_t n);
48#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#ifndef __HAVE_ARCH_STRCHR
50extern char * strchr(const char *,int);
51#endif
Grant Likely11d200e2014-03-14 17:00:14 +000052#ifndef __HAVE_ARCH_STRCHRNUL
53extern char * strchrnul(const char *,int);
54#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070055#ifndef __HAVE_ARCH_STRNCHR
56extern char * strnchr(const char *, size_t, int);
57#endif
58#ifndef __HAVE_ARCH_STRRCHR
59extern char * strrchr(const char *,int);
60#endif
André Goddard Rosaf6533982009-12-14 18:01:04 -080061extern char * __must_check skip_spaces(const char *);
KOSAKI Motohiroca54cb82009-12-14 18:01:15 -080062
63extern char *strim(char *);
64
65static inline __must_check char *strstrip(char *str)
66{
67 return strim(str);
68}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#ifndef __HAVE_ARCH_STRSTR
Li Zefand5f1fb52010-01-14 10:53:55 +080071extern char * strstr(const char *, const char *);
72#endif
73#ifndef __HAVE_ARCH_STRNSTR
74extern char * strnstr(const char *, const char *, size_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#endif
76#ifndef __HAVE_ARCH_STRLEN
77extern __kernel_size_t strlen(const char *);
78#endif
79#ifndef __HAVE_ARCH_STRNLEN
80extern __kernel_size_t strnlen(const char *,__kernel_size_t);
81#endif
Kyle McMartin8833d322006-04-10 22:53:57 -070082#ifndef __HAVE_ARCH_STRPBRK
83extern char * strpbrk(const char *,const char *);
84#endif
85#ifndef __HAVE_ARCH_STRSEP
86extern char * strsep(char **,const char *);
87#endif
88#ifndef __HAVE_ARCH_STRSPN
89extern __kernel_size_t strspn(const char *,const char *);
90#endif
91#ifndef __HAVE_ARCH_STRCSPN
92extern __kernel_size_t strcspn(const char *,const char *);
93#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95#ifndef __HAVE_ARCH_MEMSET
96extern void * memset(void *,int,__kernel_size_t);
97#endif
98#ifndef __HAVE_ARCH_MEMCPY
99extern void * memcpy(void *,const void *,__kernel_size_t);
100#endif
101#ifndef __HAVE_ARCH_MEMMOVE
102extern void * memmove(void *,const void *,__kernel_size_t);
103#endif
104#ifndef __HAVE_ARCH_MEMSCAN
105extern void * memscan(void *,int,__kernel_size_t);
106#endif
107#ifndef __HAVE_ARCH_MEMCMP
108extern int memcmp(const void *,const void *,__kernel_size_t);
109#endif
110#ifndef __HAVE_ARCH_MEMCHR
111extern void * memchr(const void *,int,__kernel_size_t);
112#endif
Akinobu Mita798248202011-10-31 17:08:07 -0700113void *memchr_inv(const void *s, int c, size_t n);
Rasmus Villemoes94df2902015-06-25 15:02:22 -0700114char *strreplace(char *s, char old, char new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Andrzej Hajdaa4bb1e42015-02-13 14:36:24 -0800116extern void kfree_const(const void *x);
117
Al Virodd0fc662005-10-07 07:46:04 +0100118extern char *kstrdup(const char *s, gfp_t gfp);
Andrzej Hajdaa4bb1e42015-02-13 14:36:24 -0800119extern const char *kstrdup_const(const char *s, gfp_t gfp);
Jeremy Fitzhardinge1e66df32007-07-17 18:37:02 -0700120extern char *kstrndup(const char *s, size_t len, gfp_t gfp);
Alexey Dobriyan1a2f67b2006-09-30 23:27:20 -0700121extern void *kmemdup(const void *src, size_t len, gfp_t gfp);
Paulo Marques543537b2005-06-23 00:09:02 -0700122
Jeremy Fitzhardinged84d1cc2007-07-17 18:37:02 -0700123extern char **argv_split(gfp_t gfp, const char *str, int *argcp);
124extern void argv_free(char **argv);
125
David Brownell34990cf2008-05-01 04:34:42 -0700126extern bool sysfs_streq(const char *s1, const char *s2);
Jonathan Camerond0f1fed2011-04-19 12:43:45 +0100127extern int strtobool(const char *s, bool *res);
David Brownell34990cf2008-05-01 04:34:42 -0700128
Lai Jiangshan4370aa42009-03-06 17:21:46 +0100129#ifdef CONFIG_BINARY_PRINTF
130int vbin_printf(u32 *bin_buf, size_t size, const char *fmt, va_list args);
131int bstr_printf(char *buf, size_t size, const char *fmt, const u32 *bin_buf);
132int bprintf(u32 *bin_buf, size_t size, const char *fmt, ...) __printf(3, 4);
133#endif
134
Akinobu Mitae108526e2008-07-23 21:26:44 -0700135extern ssize_t memory_read_from_buffer(void *to, size_t count, loff_t *ppos,
Daniel Borkmannd4c5efd2014-08-26 23:16:35 -0400136 const void *from, size_t available);
Akinobu Mitae108526e2008-07-23 21:26:44 -0700137
Rusty Russell66f92cf2009-03-31 13:05:36 -0600138/**
139 * strstarts - does @str start with @prefix?
140 * @str: string to examine
141 * @prefix: prefix to look for.
142 */
143static inline bool strstarts(const char *str, const char *prefix)
144{
145 return strncmp(str, prefix, strlen(prefix)) == 0;
146}
Akinobu Mita639b9e32012-07-30 14:40:55 -0700147
Daniel Borkmannd4c5efd2014-08-26 23:16:35 -0400148size_t memweight(const void *ptr, size_t bytes);
149void memzero_explicit(void *s, size_t count);
Akinobu Mita639b9e32012-07-30 14:40:55 -0700150
Andy Shevchenkob18888a2012-12-17 16:01:18 -0800151/**
152 * kbasename - return the last part of a pathname.
153 *
154 * @path: path to extract the filename from.
155 */
156static inline const char *kbasename(const char *path)
157{
158 const char *tail = strrchr(path, '/');
159 return tail ? tail + 1 : path;
160}
161
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162#endif /* _LINUX_STRING_H_ */