1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Copyright (C) 2020-2022 Loongson Technology Corporation Limited 4 */ 5 #ifndef _ASM_STRING_H 6 #define _ASM_STRING_H 7 8 extern void *memset(void *__s, int __c, size_t __count); 9 extern void *memcpy(void *__to, __const__ void *__from, size_t __n); 10 extern void *memmove(void *__dest, __const__ void *__src, size_t __n); 11 12 #endif /* _ASM_STRING_H */ 13