Go to the documentation of this file. 1 #ifndef __ASM_ARM_STRING_H
2 #define __ASM_ARM_STRING_H
9 #define __HAVE_ARCH_STRRCHR
10 extern char *
strrchr(
const char *
s,
int c);
12 #define __HAVE_ARCH_STRCHR
13 extern char *
strchr(
const char *
s,
int c);
15 #define __HAVE_ARCH_MEMCPY
18 #define __HAVE_ARCH_MEMMOVE
21 #define __HAVE_ARCH_MEMCHR
24 #define __HAVE_ARCH_MEMSET
29 #define memset(p,v,n) \
31 void *__p = (p); size_t __n = n; \
33 if (__builtin_constant_p((v)) && (v) == 0) \
34 __memzero((__p),(__n)); \
36 memset((__p),(v),(__n)); \