1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_SH_STRING_64_H
3 #define __ASM_SH_STRING_64_H
7 #define __HAVE_ARCH_MEMSET
8 extern void *memset(void *__s
, int __c
, size_t __count
);
10 #define __HAVE_ARCH_MEMCPY
11 extern void *memcpy(void *dest
, const void *src
, size_t count
);
13 #define __HAVE_ARCH_STRLEN
14 extern size_t strlen(const char *);
16 #define __HAVE_ARCH_STRCPY
17 extern char *strcpy(char *__dest
, const char *__src
);
19 #endif /* __KERNEL__ */
21 #endif /* __ASM_SH_STRING_64_H */