string.h 630 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (C) 2006 Atmark Techno, Inc.
  3. *
  4. * This file is subject to the terms and conditions of the GNU General Public
  5. * License. See the file "COPYING" in the main directory of this archive
  6. * for more details.
  7. */
  8. #ifndef _ASM_MICROBLAZE_STRING_H
  9. #define _ASM_MICROBLAZE_STRING_H
  10. #ifdef __KERNEL__
  11. #define __HAVE_ARCH_MEMSET
  12. #define __HAVE_ARCH_MEMCPY
  13. #define __HAVE_ARCH_MEMMOVE
  14. extern void *memset(void *, int, __kernel_size_t);
  15. extern void *memcpy(void *, const void *, __kernel_size_t);
  16. extern void *memmove(void *, const void *, __kernel_size_t);
  17. #endif /* __KERNEL__ */
  18. #endif /* _ASM_MICROBLAZE_STRING_H */