string.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. #ifndef __STRING_H
  2. #define __STRING_H
  3. #include <features.h>
  4. #include <sys/types.h>
  5. #include <stddef.h>
  6. /* Basic string functions */
  7. /* Return the length of S. */
  8. extern size_t strlen __P ((__const char *__s));
  9. /* Append SRC onto DEST. */
  10. extern char *strcat __P ((char *__restrict __dest,
  11. __const char *__restrict __src));
  12. /* Append no more than N characters from SRC onto DEST. */
  13. extern char *strncat __P ((char *__restrict __dest,
  14. __const char *__restrict __src, size_t __n));
  15. /* Copy SRC to DEST. */
  16. extern char *strcpy __P ((char *__restrict __dest,
  17. __const char *__restrict __src));
  18. extern char *stpcpy __P ((char *__restrict __dest,
  19. __const char *__restrict __src));
  20. /* Copy no more than N characters of SRC to DEST. */
  21. extern char *strncpy __P ((char *__restrict __dest,
  22. __const char *__restrict __src, size_t __n));
  23. /* Compare S1 and S2. */
  24. extern int strcmp __P ((__const char *__s1, __const char *__s2));
  25. /* Compare N characters of S1 and S2. */
  26. extern int strncmp __P ((__const char *__s1, __const char *__s2, size_t __n));
  27. /* Find the first occurrence of C in S. */
  28. extern char *strchr __P ((__const char *__s, int __c));
  29. /* Find the last occurrence of C in S. */
  30. extern char *strrchr __P ((__const char *__s, int __c));
  31. /* Duplicate S, returning an identical malloc'd string. */
  32. extern char *strdup __P ((__const char *__s));
  33. /* Basic mem functions */
  34. /* Copy N bytes of SRC to DEST. */
  35. extern __ptr_t memcpy __P ((__ptr_t __restrict __dest,
  36. __const __ptr_t __restrict __src, size_t __n));
  37. /* Copy no more than N bytes of SRC to DEST, stopping when C is found.
  38. Return the position in DEST one byte past where C was copied,
  39. or NULL if C was not found in the first N bytes of SRC. */
  40. extern __ptr_t memccpy __P ((__ptr_t __dest, __const __ptr_t __src,
  41. int __c, size_t __n));
  42. /* Search N bytes of S for C. */
  43. extern __ptr_t memchr __P ((__const __ptr_t __s, int __c, size_t __n));
  44. /* Set N bytes of S to C. */
  45. extern __ptr_t memset __P ((__ptr_t __s, int __c, size_t __n));
  46. /* Compare N bytes of S1 and S2. */
  47. extern int memcmp __P ((__const __ptr_t __s1, __const __ptr_t __s2,
  48. size_t __n));
  49. /* Copy N bytes of SRC to DEST, guaranteeing
  50. correct behavior for overlapping strings. */
  51. extern __ptr_t memmove __P ((__ptr_t __dest, __const __ptr_t __src,
  52. size_t __n));
  53. /* Minimal (very!) locale support */
  54. extern int strcoll __P ((__const char *__s1, __const char *__s2));
  55. extern size_t strxfrm __P ((char *__restrict __dest,
  56. __const char *__restrict __src, size_t __n));
  57. /* BSDisms */
  58. extern char *index __P ((__const char *__s, int __c));
  59. extern char *rindex __P ((__const char *__s, int __c));
  60. /* Return the position of the first bit set in I, or 0 if none are set.
  61. The least-significant bit is position 1, the most-significant 32. */
  62. extern int ffs __P ((int __i)) __attribute__ ((const));
  63. /* Other common BSD functions */
  64. /* Set N bytes of S to 0. */
  65. extern void bzero __P ((__ptr_t __s, size_t __n));
  66. /* Copy N bytes of SRC to DEST (like memmove, but args reversed). */
  67. extern void bcopy __P ((__const __ptr_t __src, __ptr_t __dest, size_t __n));
  68. /* Compare S1 and S2, ignoring case. */
  69. extern int strcasecmp __P ((__const char *__s1, __const char *__s2));
  70. /* Compare no more than N chars of S1 and S2, ignoring case. */
  71. extern int strncasecmp __P ((__const char *__s1, __const char *__s2,
  72. size_t __n));
  73. /* Find the first occurrence in S of any character in ACCEPT. */
  74. extern char *strpbrk __P ((__const char *__s, __const char *__accept));
  75. /* Return the next DELIM-delimited token from *STRINGP,
  76. terminating it with a '\0', and update *STRINGP to point past it. */
  77. extern char *strsep __P ((char **__restrict __stringp,
  78. __const char *__restrict __delim));
  79. /* Find the first occurrence of NEEDLE in HAYSTACK. */
  80. extern char *strstr __P ((__const char *__haystack, __const char *__needle));
  81. extern char *strcasestr __P((__const char *__haystack, __const char *__needle));
  82. /* Divide S into tokens separated by characters in DELIM. */
  83. extern char *strtok __P ((char *__restrict __s,
  84. __const char *__restrict __delim));
  85. /* Divide S into tokens separated by characters in DELIM. Information
  86. passed between calls are stored in SAVE_PTR. */
  87. extern char *__strtok_r __P ((char *__restrict __s,
  88. __const char *__restrict __delim,
  89. char **__restrict __save_ptr));
  90. #if defined __USE_POSIX || defined __USE_MISC
  91. extern char *strtok_r __P ((char *__restrict __s,
  92. __const char *__restrict __delim,
  93. char **__restrict __save_ptr));
  94. #endif
  95. /* Return the length of the initial segment of S which
  96. consists entirely of characters not in REJECT. */
  97. extern size_t strcspn __P ((__const char *__s, __const char *__reject));
  98. /* Return the length of the initial segment of S which
  99. consists entirely of characters in ACCEPT. */
  100. extern size_t strspn __P ((__const char *__s, __const char *__accept));
  101. /* Return a string describing the meaning of the signal number in SIG. */
  102. extern char *strsignal __P ((int __sig));
  103. /* More BSD compatabilty */
  104. int bcmp(const void *s1, const void *s2, size_t n);
  105. /* Linux silly hour */
  106. char *strfry __P ((char *));
  107. /* Find the length of STRING, but scan at most MAXLEN characters.
  108. If no '\0' terminator is found in that many characters, return MAXLEN. */
  109. extern size_t strnlen __P ((__const char *__string, size_t __maxlen));
  110. /* Duplicate S, returning an identical alloca'd string. */
  111. # define strdupa(s) \
  112. (__extension__ \
  113. ({ \
  114. __const char *__old = (s); \
  115. size_t __len = strlen (__old) + 1; \
  116. char *__new = __builtin_alloca (__len); \
  117. (char *) memcpy (__new, __old, __len); \
  118. }))
  119. /* Return an alloca'd copy of at most N bytes of string. */
  120. # define strndupa(s, n) \
  121. (__extension__ \
  122. ({ \
  123. __const char *__old = (s); \
  124. size_t __len = strnlen (__old, (n)); \
  125. char *__new = __builtin_alloca (__len + 1); \
  126. __new[__len] = '\0'; \
  127. (char *) memcpy (__new, __old, __len); \
  128. }))
  129. #endif