string.h 383 B

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