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