1 #ifndef __ARM_STRING_H__ 2 #define __ARM_STRING_H__ 3 4 5 /* 6 * We don't do inline string functions, since the 7 * optimised inline asm versions are not small. 8 */ 9 10 #define __HAVE_ARCH_STRRCHR 11 #define __HAVE_ARCH_STRCHR 12 #if defined(CONFIG_ARM_64) 13 #define __HAVE_ARCH_STRCMP 14 #define __HAVE_ARCH_STRNCMP 15 #define __HAVE_ARCH_STRLEN 16 #define __HAVE_ARCH_STRNLEN 17 #endif 18 19 #define __HAVE_ARCH_MEMCPY 20 #if defined(CONFIG_ARM_64) 21 #define __HAVE_ARCH_MEMCMP 22 #endif 23 #define __HAVE_ARCH_MEMMOVE 24 #define __HAVE_ARCH_MEMSET 25 #define __HAVE_ARCH_MEMCHR 26 27 #endif /* __ARM_STRING_H__ */ 28 /* 29 * Local variables: 30 * mode: C 31 * c-file-style: "BSD" 32 * c-basic-offset: 4 33 * indent-tabs-mode: nil 34 * End: 35 */ 36