string.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. /* Copyright (C) 1991-1993, 1995-2002, 2003 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA. */
  15. /*
  16. * ISO C99 Standard: 7.21 String handling <string.h>
  17. */
  18. #ifndef _STRING_H
  19. #define _STRING_H 1
  20. #include <features.h>
  21. __BEGIN_DECLS
  22. /* Get size_t and NULL from <stddef.h>. */
  23. #define __need_size_t
  24. #define __need_NULL
  25. #include <stddef.h>
  26. __BEGIN_NAMESPACE_STD
  27. /* Copy N bytes of SRC to DEST. */
  28. extern void *memcpy (void *__restrict __dest,
  29. __const void *__restrict __src, size_t __n) __THROW;
  30. /* Copy N bytes of SRC to DEST, guaranteeing
  31. correct behavior for overlapping strings. */
  32. extern void *memmove (void *__dest, __const void *__src, size_t __n)
  33. __THROW;
  34. __END_NAMESPACE_STD
  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. #if defined __USE_SVID || defined __USE_BSD || defined __USE_XOPEN
  39. extern void *memccpy (void *__restrict __dest, __const void *__restrict __src,
  40. int __c, size_t __n)
  41. __THROW;
  42. #endif /* SVID. */
  43. __BEGIN_NAMESPACE_STD
  44. /* Set N bytes of S to C. */
  45. extern void *memset (void *__s, int __c, size_t __n) __THROW;
  46. /* Compare N bytes of S1 and S2. */
  47. extern int memcmp (__const void *__s1, __const void *__s2, size_t __n)
  48. __THROW __attribute_pure__;
  49. /* Search N bytes of S for C. */
  50. extern void *memchr (__const void *__s, int __c, size_t __n)
  51. __THROW __attribute_pure__;
  52. __END_NAMESPACE_STD
  53. #ifdef __USE_GNU
  54. /* Search in S for C. This is similar to `memchr' but there is no
  55. length limit. */
  56. extern void *rawmemchr (__const void *__s, int __c) __THROW __attribute_pure__;
  57. /* Search N bytes of S for the final occurrence of C. */
  58. extern void *memrchr (__const void *__s, int __c, size_t __n)
  59. __THROW __attribute_pure__;
  60. #endif
  61. __BEGIN_NAMESPACE_STD
  62. /* Copy SRC to DEST. */
  63. extern char *strcpy (char *__restrict __dest, __const char *__restrict __src)
  64. __THROW;
  65. /* Copy no more than N characters of SRC to DEST. */
  66. extern char *strncpy (char *__restrict __dest,
  67. __const char *__restrict __src, size_t __n) __THROW;
  68. /* Append SRC onto DEST. */
  69. extern char *strcat (char *__restrict __dest, __const char *__restrict __src)
  70. __THROW;
  71. /* Append no more than N characters from SRC onto DEST. */
  72. extern char *strncat (char *__restrict __dest, __const char *__restrict __src,
  73. size_t __n) __THROW;
  74. /* Compare S1 and S2. */
  75. extern int strcmp (__const char *__s1, __const char *__s2)
  76. __THROW __attribute_pure__;
  77. /* Compare N characters of S1 and S2. */
  78. extern int strncmp (__const char *__s1, __const char *__s2, size_t __n)
  79. __THROW __attribute_pure__;
  80. /* Compare the collated forms of S1 and S2. */
  81. extern int strcoll (__const char *__s1, __const char *__s2)
  82. __THROW __attribute_pure__;
  83. /* Put a transformation of SRC into no more than N bytes of DEST. */
  84. extern size_t strxfrm (char *__restrict __dest,
  85. __const char *__restrict __src, size_t __n) __THROW;
  86. __END_NAMESPACE_STD
  87. #ifdef __UCLIBC_HAS_XLOCALE__
  88. #ifdef __USE_GNU
  89. /* The following functions are equivalent to the both above but they
  90. take the locale they use for the collation as an extra argument.
  91. This is not standardsized but something like will come. */
  92. # include <xlocale.h>
  93. /* Compare the collated forms of S1 and S2 using rules from L. */
  94. extern int strcoll_l (__const char *__s1, __const char *__s2, __locale_t __l)
  95. __THROW __attribute_pure__;
  96. extern int __strcoll_l (__const char *__s1, __const char *__s2, __locale_t __l)
  97. __THROW __attribute_pure__;
  98. /* Put a transformation of SRC into no more than N bytes of DEST. */
  99. extern size_t strxfrm_l (char *__dest, __const char *__src, size_t __n,
  100. __locale_t __l) __THROW;
  101. extern size_t __strxfrm_l (char *__dest, __const char *__src, size_t __n,
  102. __locale_t __l) __THROW;
  103. #endif
  104. #endif
  105. #if defined __USE_SVID || defined __USE_BSD || defined __USE_XOPEN_EXTENDED
  106. /* Duplicate S, returning an identical malloc'd string. */
  107. extern char *strdup (__const char *__s) __THROW __attribute_malloc__;
  108. #endif
  109. /* Return a malloc'd copy of at most N bytes of STRING. The
  110. resultant string is terminated even if no null terminator
  111. appears before STRING[N]. */
  112. #if defined __USE_GNU
  113. extern char *strndup (__const char *__string, size_t __n)
  114. __THROW __attribute_malloc__;
  115. #endif
  116. #if defined __USE_GNU && defined __GNUC__
  117. /* Duplicate S, returning an identical alloca'd string. */
  118. # define strdupa(s) \
  119. (__extension__ \
  120. ({ \
  121. __const char *__old = (s); \
  122. size_t __len = strlen (__old) + 1; \
  123. char *__new = (char *) __builtin_alloca (__len); \
  124. (char *) memcpy (__new, __old, __len); \
  125. }))
  126. /* Return an alloca'd copy of at most N bytes of string. */
  127. # define strndupa(s, n) \
  128. (__extension__ \
  129. ({ \
  130. __const char *__old = (s); \
  131. size_t __len = strnlen (__old, (n)); \
  132. char *__new = (char *) __builtin_alloca (__len + 1); \
  133. __new[__len] = '\0'; \
  134. (char *) memcpy (__new, __old, __len); \
  135. }))
  136. #endif
  137. __BEGIN_NAMESPACE_STD
  138. /* Find the first occurrence of C in S. */
  139. extern char *strchr (__const char *__s, int __c) __THROW __attribute_pure__;
  140. /* Find the last occurrence of C in S. */
  141. extern char *strrchr (__const char *__s, int __c) __THROW __attribute_pure__;
  142. __END_NAMESPACE_STD
  143. #ifdef __USE_GNU
  144. /* This function is similar to `strchr'. But it returns a pointer to
  145. the closing NUL byte in case C is not found in S. */
  146. extern char *strchrnul (__const char *__s, int __c) __THROW __attribute_pure__;
  147. #endif
  148. __BEGIN_NAMESPACE_STD
  149. /* Return the length of the initial segment of S which
  150. consists entirely of characters not in REJECT. */
  151. extern size_t strcspn (__const char *__s, __const char *__reject)
  152. __THROW __attribute_pure__;
  153. /* Return the length of the initial segment of S which
  154. consists entirely of characters in ACCEPT. */
  155. extern size_t strspn (__const char *__s, __const char *__accept)
  156. __THROW __attribute_pure__;
  157. /* Find the first occurrence in S of any character in ACCEPT. */
  158. extern char *strpbrk (__const char *__s, __const char *__accept)
  159. __THROW __attribute_pure__;
  160. /* Find the first occurrence of NEEDLE in HAYSTACK. */
  161. extern char *strstr (__const char *__haystack, __const char *__needle)
  162. __THROW __attribute_pure__;
  163. /* Divide S into tokens separated by characters in DELIM. */
  164. extern char *strtok (char *__restrict __s, __const char *__restrict __delim)
  165. __THROW;
  166. __END_NAMESPACE_STD
  167. /* Divide S into tokens separated by characters in DELIM. Information
  168. passed between calls are stored in SAVE_PTR. */
  169. extern char *__strtok_r (char *__restrict __s,
  170. __const char *__restrict __delim,
  171. char **__restrict __save_ptr) __THROW;
  172. #if defined __USE_POSIX || defined __USE_MISC
  173. extern char *strtok_r (char *__restrict __s, __const char *__restrict __delim,
  174. char **__restrict __save_ptr) __THROW;
  175. #endif
  176. #ifdef __USE_GNU
  177. /* Similar to `strstr' but this function ignores the case of both strings. */
  178. extern char *strcasestr (__const char *__haystack, __const char *__needle)
  179. __THROW __attribute_pure__;
  180. #endif
  181. #ifdef __USE_GNU
  182. /* Find the first occurrence of NEEDLE in HAYSTACK.
  183. NEEDLE is NEEDLELEN bytes long;
  184. HAYSTACK is HAYSTACKLEN bytes long. */
  185. extern void *memmem (__const void *__haystack, size_t __haystacklen,
  186. __const void *__needle, size_t __needlelen)
  187. __THROW __attribute_pure__;
  188. /* Copy N bytes of SRC to DEST, return pointer to bytes after the
  189. last written byte. */
  190. extern void *__mempcpy (void *__restrict __dest,
  191. __const void *__restrict __src, size_t __n) __THROW;
  192. extern void *mempcpy (void *__restrict __dest,
  193. __const void *__restrict __src, size_t __n) __THROW;
  194. #endif
  195. __BEGIN_NAMESPACE_STD
  196. /* Return the length of S. */
  197. extern size_t strlen (__const char *__s) __THROW __attribute_pure__;
  198. __END_NAMESPACE_STD
  199. #ifdef __USE_GNU
  200. /* Find the length of STRING, but scan at most MAXLEN characters.
  201. If no '\0' terminator is found in that many characters, return MAXLEN. */
  202. extern size_t strnlen (__const char *__string, size_t __maxlen)
  203. __THROW __attribute_pure__;
  204. #endif
  205. __BEGIN_NAMESPACE_STD
  206. /* Return a string describing the meaning of the `errno' code in ERRNUM. */
  207. extern char *strerror (int __errnum) __THROW;
  208. __END_NAMESPACE_STD
  209. #if defined __USE_XOPEN2K || defined __USE_MISC
  210. /* Reentrant version of `strerror'. If a temporary buffer is required, at
  211. most BUFLEN bytes of BUF will be used. */
  212. /* extern char *strerror_r (int __errnum, char *__buf, size_t __buflen) __THROW; */
  213. /* uClibc Note: glibc's strerror_r is different from that specified in SUSv3.
  214. * So we try to compensate based on feature macros. */
  215. extern char *_glibc_strerror_r (int __errnum, char *__buf, size_t __buflen) __THROW;
  216. extern int _susv3_strerror_r (int __errnum, char *__buf, size_t buflen) __THROW;
  217. #if defined(__USE_XOPEN2K) && !defined(__USE_GNU)
  218. # ifdef __REDIRECT
  219. extern int __REDIRECT (strerror_r,
  220. (int __errnum, char *__buf, size_t buflen) __THROW,
  221. _susv3_strerror_r);
  222. # else
  223. # define strerror_r _susv3_strerror_r
  224. # endif
  225. #else /* defined(__USE_XOPEN2K) && !defined(__USE_GNU) */
  226. # ifdef __REDIRECT
  227. extern char *__REDIRECT (strerror_r,
  228. (int __errnum, char *__buf, size_t buflen) __THROW,
  229. _glibc_strerror_r);
  230. # else
  231. # define strerror_r _glibc_strerror_r
  232. # endif
  233. #endif /* defined(__USE_XOPEN2K) && !defined(__USE_GNU) */
  234. #endif
  235. /* We define this function always since `bzero' is sometimes needed when
  236. the namespace rules does not allow this. */
  237. extern void __bzero (void *__s, size_t __n) __THROW;
  238. #ifdef __USE_BSD
  239. /* Copy N bytes of SRC to DEST (like memmove, but args reversed). */
  240. extern void bcopy (__const void *__src, void *__dest, size_t __n) __THROW;
  241. /* Set N bytes of S to 0. */
  242. extern void bzero (void *__s, size_t __n) __THROW;
  243. /* Compare N bytes of S1 and S2 (same as memcmp). */
  244. extern int bcmp (__const void *__s1, __const void *__s2, size_t __n)
  245. __THROW __attribute_pure__;
  246. /* Find the first occurrence of C in S (same as strchr). */
  247. extern char *index (__const char *__s, int __c) __THROW __attribute_pure__;
  248. /* Find the last occurrence of C in S (same as strrchr). */
  249. extern char *rindex (__const char *__s, int __c) __THROW __attribute_pure__;
  250. /* Return the position of the first bit set in I, or 0 if none are set.
  251. The least-significant bit is position 1, the most-significant 32. */
  252. extern int ffs (int __i) __THROW __attribute__ ((__const__));
  253. /* The following two functions are non-standard but necessary for non-32 bit
  254. platforms. */
  255. # ifdef __USE_GNU
  256. extern int ffsl (long int __l) __THROW __attribute__ ((__const__));
  257. # ifdef __GNUC__
  258. __extension__ extern int ffsll (long long int __ll)
  259. __THROW __attribute__ ((__const__));
  260. # endif
  261. # endif
  262. /* Compare S1 and S2, ignoring case. */
  263. extern int strcasecmp (__const char *__s1, __const char *__s2)
  264. __THROW __attribute_pure__;
  265. /* Compare no more than N chars of S1 and S2, ignoring case. */
  266. extern int strncasecmp (__const char *__s1, __const char *__s2, size_t __n)
  267. __THROW __attribute_pure__;
  268. #endif /* Use BSD. */
  269. #ifdef __UCLIBC_HAS_XLOCALE__
  270. #ifdef __USE_GNU
  271. /* Again versions of a few functions which use the given locale instead
  272. of the global one. */
  273. extern int strcasecmp_l (__const char *__s1, __const char *__s2,
  274. __locale_t __loc) __THROW __attribute_pure__;
  275. extern int __strcasecmp_l (__const char *__s1, __const char *__s2,
  276. __locale_t __loc) __THROW __attribute_pure__;
  277. extern int strncasecmp_l (__const char *__s1, __const char *__s2,
  278. size_t __n, __locale_t __loc)
  279. __THROW __attribute_pure__;
  280. extern int __strncasecmp_l (__const char *__s1, __const char *__s2,
  281. size_t __n, __locale_t __loc)
  282. __THROW __attribute_pure__;
  283. #endif
  284. #endif
  285. #ifdef __USE_BSD
  286. /* Return the next DELIM-delimited token from *STRINGP,
  287. terminating it with a '\0', and update *STRINGP to point past it. */
  288. extern char *strsep (char **__restrict __stringp,
  289. __const char *__restrict __delim) __THROW;
  290. #endif
  291. #ifdef __USE_GNU
  292. /* Return a string describing the meaning of the signal number in SIG. */
  293. extern char *strsignal (int __sig) __THROW;
  294. /* Copy SRC to DEST, returning the address of the terminating '\0' in DEST. */
  295. extern char *__stpcpy (char *__restrict __dest, __const char *__restrict __src)
  296. __THROW;
  297. extern char *stpcpy (char *__restrict __dest, __const char *__restrict __src)
  298. __THROW;
  299. /* Copy no more than N characters of SRC to DEST, returning the address of
  300. the last character written into DEST. */
  301. extern char *__stpncpy (char *__restrict __dest,
  302. __const char *__restrict __src, size_t __n) __THROW;
  303. extern char *stpncpy (char *__restrict __dest,
  304. __const char *__restrict __src, size_t __n) __THROW;
  305. # ifndef basename
  306. /* Return the file name within directory of FILENAME. We don't
  307. declare the function if the `basename' macro is available (defined
  308. in <libgen.h>) which makes the XPG version of this function
  309. available. */
  310. extern char *basename (__const char *__filename) __THROW;
  311. # endif
  312. #endif
  313. #ifdef __USE_BSD
  314. /* Two OpenBSD extension functions. */
  315. extern size_t strlcat(char *__restrict dst, const char *__restrict src,
  316. size_t n) __THROW;
  317. extern size_t strlcpy(char *__restrict dst, const char *__restrict src,
  318. size_t n) __THROW;
  319. #endif
  320. __END_DECLS
  321. #endif /* string.h */