string.h (383B)
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 8extern void *memset(void *__s, int __c, size_t __count); 9extern void *memcpy(void *__to, __const__ void *__from, size_t __n); 10extern void *memmove(void *__dest, __const__ void *__src, size_t __n); 11 12#endif /* _ASM_STRING_H */