string.h 6.0 KB

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