18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci
38c2ecf20Sopenharmony_ci#ifndef __ABI_CSKY_STRING_H
48c2ecf20Sopenharmony_ci#define __ABI_CSKY_STRING_H
58c2ecf20Sopenharmony_ci
68c2ecf20Sopenharmony_ci#define __HAVE_ARCH_MEMCMP
78c2ecf20Sopenharmony_ciextern int memcmp(const void *, const void *, __kernel_size_t);
88c2ecf20Sopenharmony_ci
98c2ecf20Sopenharmony_ci#define __HAVE_ARCH_MEMCPY
108c2ecf20Sopenharmony_ciextern void *memcpy(void *, const void *, __kernel_size_t);
118c2ecf20Sopenharmony_ci
128c2ecf20Sopenharmony_ci#define __HAVE_ARCH_MEMMOVE
138c2ecf20Sopenharmony_ciextern void *memmove(void *, const void *, __kernel_size_t);
148c2ecf20Sopenharmony_ci
158c2ecf20Sopenharmony_ci#define __HAVE_ARCH_MEMSET
168c2ecf20Sopenharmony_ciextern void *memset(void *, int,  __kernel_size_t);
178c2ecf20Sopenharmony_ci
188c2ecf20Sopenharmony_ci#define __HAVE_ARCH_STRCMP
198c2ecf20Sopenharmony_ciextern int strcmp(const char *, const char *);
208c2ecf20Sopenharmony_ci
218c2ecf20Sopenharmony_ci#define __HAVE_ARCH_STRCPY
228c2ecf20Sopenharmony_ciextern char *strcpy(char *, const char *);
238c2ecf20Sopenharmony_ci
248c2ecf20Sopenharmony_ci#define __HAVE_ARCH_STRLEN
258c2ecf20Sopenharmony_ciextern __kernel_size_t strlen(const char *);
268c2ecf20Sopenharmony_ci
278c2ecf20Sopenharmony_ci#endif /* __ABI_CSKY_STRING_H */
28