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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_STRING_H_
  2. #define _LINUX_STRING_H_
  3. /* We don't want strings.h stuff being user by user stuff by accident */
  4. #ifdef __KERNEL__
  5. #include <linux/types.h> /* for size_t */
  6. #include <linux/stddef.h> /* for NULL */
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. extern char * ___strtok;
  11. extern char * strpbrk(const char *,const char *);
  12. extern char * strtok(char *,const char *);
  13. extern char * strsep(char **,const char *);
  14. extern __kernel_size_t strspn(const char *,const char *);
  15. /*
  16.  * Include machine specific inline routines
  17.  */
  18. #include <asm/string.h>
  19. #ifndef __HAVE_ARCH_STRCPY
  20. extern char * strcpy(char *,const char *);
  21. #endif
  22. #ifndef __HAVE_ARCH_STRNCPY
  23. extern char * strncpy(char *,const char *, __kernel_size_t);
  24. #endif
  25. #ifndef __HAVE_ARCH_STRCAT
  26. extern char * strcat(char *, const char *);
  27. #endif
  28. #ifndef __HAVE_ARCH_STRNCAT
  29. extern char * strncat(char *, const char *, __kernel_size_t);
  30. #endif
  31. #ifndef __HAVE_ARCH_STRCMP
  32. extern int strcmp(const char *,const char *);
  33. #endif
  34. #ifndef __HAVE_ARCH_STRNCMP
  35. extern int strncmp(const char *,const char *,__kernel_size_t);
  36. #endif
  37. #ifndef __HAVE_ARCH_STRNICMP
  38. extern int strnicmp(const char *, const char *, __kernel_size_t);
  39. #endif
  40. #ifndef __HAVE_ARCH_STRCHR
  41. extern char * strchr(const char *,int);
  42. #endif
  43. #ifndef __HAVE_ARCH_STRRCHR
  44. extern char * strrchr(const char *,int);
  45. #endif
  46. #ifndef __HAVE_ARCH_STRSTR
  47. extern char * strstr(const char *,const char *);
  48. #endif
  49. #ifndef __HAVE_ARCH_STRLEN
  50. extern __kernel_size_t strlen(const char *);
  51. #endif
  52. #ifndef __HAVE_ARCH_STRNLEN
  53. extern __kernel_size_t strnlen(const char *,__kernel_size_t);
  54. #endif
  55. #ifndef __HAVE_ARCH_MEMSET
  56. extern void * memset(void *,int,__kernel_size_t);
  57. #endif
  58. #ifndef __HAVE_ARCH_MEMCPY
  59. extern void * memcpy(void *,const void *,__kernel_size_t);
  60. #endif
  61. #ifndef __HAVE_ARCH_MEMMOVE
  62. extern void * memmove(void *,const void *,__kernel_size_t);
  63. #endif
  64. #ifndef __HAVE_ARCH_MEMSCAN
  65. extern void * memscan(void *,int,__kernel_size_t);
  66. #endif
  67. #ifndef __HAVE_ARCH_MEMCMP
  68. extern int memcmp(const void *,const void *,__kernel_size_t);
  69. #endif
  70. #ifndef __HAVE_ARCH_MEMCHR
  71. extern void * memchr(const void *,int,__kernel_size_t);
  72. #endif
  73. #ifdef __cplusplus
  74. }
  75. #endif
  76. #endif
  77. #endif /* _LINUX_STRING_H_ */