home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / arch / powerpc / include / asm / string.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-12-24  |  1.0 KB  |  33 lines

  1. #ifndef _ASM_POWERPC_STRING_H
  2. #define _ASM_POWERPC_STRING_H
  3.  
  4. #ifdef __KERNEL__
  5.  
  6. #define __HAVE_ARCH_STRCPY
  7. #define __HAVE_ARCH_STRNCPY
  8. #define __HAVE_ARCH_STRLEN
  9. #define __HAVE_ARCH_STRCMP
  10. #define __HAVE_ARCH_STRNCMP
  11. #define __HAVE_ARCH_STRCAT
  12. #define __HAVE_ARCH_MEMSET
  13. #define __HAVE_ARCH_MEMCPY
  14. #define __HAVE_ARCH_MEMMOVE
  15. #define __HAVE_ARCH_MEMCMP
  16. #define __HAVE_ARCH_MEMCHR
  17.  
  18. extern char * strcpy(char *,const char *);
  19. extern char * strncpy(char *,const char *, __kernel_size_t);
  20. extern __kernel_size_t strlen(const char *);
  21. extern int strcmp(const char *,const char *);
  22. extern int strncmp(const char *, const char *, __kernel_size_t);
  23. extern char * strcat(char *, const char *);
  24. extern void * memset(void *,int,__kernel_size_t);
  25. extern void * memcpy(void *,const void *,__kernel_size_t);
  26. extern void * memmove(void *,const void *,__kernel_size_t);
  27. extern int memcmp(const void *,const void *,__kernel_size_t);
  28. extern void * memchr(const void *,int,__kernel_size_t);
  29.  
  30. #endif /* __KERNEL__ */
  31.  
  32. #endif    /* _ASM_POWERPC_STRING_H */
  33.