string_64.h 460 B

123456789101112131415161718192021
  1. #ifndef __ASM_SH_STRING_64_H
  2. #define __ASM_SH_STRING_64_H
  3. #ifdef __KERNEL__
  4. #define __HAVE_ARCH_MEMSET
  5. extern void *memset(void *__s, int __c, size_t __count);
  6. #define __HAVE_ARCH_MEMCPY
  7. extern void *memcpy(void *dest, const void *src, size_t count);
  8. #define __HAVE_ARCH_STRLEN
  9. extern size_t strlen(const char *);
  10. #define __HAVE_ARCH_STRCPY
  11. extern char *strcpy(char *__dest, const char *__src);
  12. #endif /* __KERNEL__ */
  13. #endif /* __ASM_SH_STRING_64_H */