string.h 737 B

123456789101112131415161718192021222324252627282930
  1. #ifndef __ASM_I386_STRING_H
  2. #define __ASM_I386_STRING_H
  3. /*
  4. * We don't do inline string functions, since the
  5. * optimised inline asm versions are not small.
  6. */
  7. #undef __HAVE_ARCH_STRRCHR
  8. extern char * strrchr(const char * s, int c);
  9. #undef __HAVE_ARCH_STRCHR
  10. extern char * strchr(const char * s, int c);
  11. #undef __HAVE_ARCH_MEMCPY
  12. extern void * memcpy(void *, const void *, __kernel_size_t);
  13. #undef __HAVE_ARCH_MEMMOVE
  14. extern void * memmove(void *, const void *, __kernel_size_t);
  15. #undef __HAVE_ARCH_MEMCHR
  16. extern void * memchr(const void *, int, __kernel_size_t);
  17. #undef __HAVE_ARCH_MEMSET
  18. extern void * memset(void *, int, __kernel_size_t);
  19. #undef __HAVE_ARCH_MEMZERO
  20. extern void memzero(void *ptr, __kernel_size_t n);
  21. #endif