string.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.string.h 1.5 05/17/01 18:14:26 cort
  3.  */
  4. #ifndef _PPC_STRING_H_
  5. #define _PPC_STRING_H_
  6. #ifdef __KERNEL__
  7. #define __HAVE_ARCH_STRCPY
  8. #define __HAVE_ARCH_STRNCPY
  9. #define __HAVE_ARCH_STRLEN
  10. #define __HAVE_ARCH_STRCMP
  11. #define __HAVE_ARCH_STRCAT
  12. #define __HAVE_ARCH_MEMSET
  13. #define __HAVE_ARCH_BCOPY
  14. #define __HAVE_ARCH_MEMCPY
  15. #define __HAVE_ARCH_MEMMOVE
  16. #define __HAVE_ARCH_MEMCMP
  17. #define __HAVE_ARCH_MEMCHR
  18. extern int strcasecmp(const char *, const char *);
  19. extern int strncasecmp(const char *, const char *, int);
  20. extern char * strcpy(char *,const char *);
  21. extern char * strncpy(char *,const char *, __kernel_size_t);
  22. extern __kernel_size_t strlen(const char *);
  23. extern int strcmp(const char *,const char *);
  24. extern char * strcat(char *, const char *);
  25. extern void * memset(void *,int,__kernel_size_t);
  26. extern void * memcpy(void *,const void *,__kernel_size_t);
  27. extern void * memmove(void *,const void *,__kernel_size_t);
  28. extern int memcmp(const void *,const void *,__kernel_size_t);
  29. extern void * memchr(const void *,int,__kernel_size_t);
  30. #endif /* __KERNEL__ */
  31. #endif