string2.h 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329
  1. /* Machine-independant string function optimizations.
  2. Copyright (C) 1997-2016 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, see
  15. <http://www.gnu.org/licenses/>. */
  16. #ifndef _STRING_H
  17. # error "Never use <bits/string2.h> directly; include <string.h> instead."
  18. #endif
  19. #ifndef __NO_STRING_INLINES
  20. /* Unlike the definitions in the header <bits/string.h> the
  21. definitions contained here are not optimized down to assembler
  22. level. Those optimizations are not always a good idea since this
  23. means the code size increases a lot. Instead the definitions here
  24. optimize some functions in a way which do not dramatically
  25. increase the code size and which do not use assembler. The main
  26. trick is to use GCC's `__builtin_constant_p' function.
  27. Every function XXX which has a defined version in
  28. <bits/string.h> must be accompanied by a symbol _HAVE_STRING_ARCH_XXX
  29. to make sure we don't get redefinitions.
  30. We must use here macros instead of inline functions since the
  31. trick won't work with the latter. */
  32. #ifndef __STRING_INLINE
  33. # ifdef __cplusplus
  34. # define __STRING_INLINE inline
  35. # else
  36. # define __STRING_INLINE __extern_inline
  37. # endif
  38. #endif
  39. #if _STRING_INLINE_unaligned
  40. /* If we can do unaligned memory accesses we must know the endianess. */
  41. # include <endian.h>
  42. # include <bits/types.h>
  43. # if __BYTE_ORDER == __LITTLE_ENDIAN
  44. # define __STRING2_SMALL_GET16(src, idx) \
  45. (((const unsigned char *) (const char *) (src))[idx + 1] << 8 \
  46. | ((const unsigned char *) (const char *) (src))[idx])
  47. # define __STRING2_SMALL_GET32(src, idx) \
  48. (((((const unsigned char *) (const char *) (src))[idx + 3] << 8 \
  49. | ((const unsigned char *) (const char *) (src))[idx + 2]) << 8 \
  50. | ((const unsigned char *) (const char *) (src))[idx + 1]) << 8 \
  51. | ((const unsigned char *) (const char *) (src))[idx])
  52. # else
  53. # define __STRING2_SMALL_GET16(src, idx) \
  54. (((const unsigned char *) (const char *) (src))[idx] << 8 \
  55. | ((const unsigned char *) (const char *) (src))[idx + 1])
  56. # define __STRING2_SMALL_GET32(src, idx) \
  57. (((((const unsigned char *) (const char *) (src))[idx] << 8 \
  58. | ((const unsigned char *) (const char *) (src))[idx + 1]) << 8 \
  59. | ((const unsigned char *) (const char *) (src))[idx + 2]) << 8 \
  60. | ((const unsigned char *) (const char *) (src))[idx + 3])
  61. # endif
  62. #else
  63. /* These are a few types we need for the optimizations if we cannot
  64. use unaligned memory accesses. */
  65. # define __STRING2_COPY_TYPE(N) \
  66. typedef struct { unsigned char __arr[N]; } \
  67. __attribute__ ((__packed__)) __STRING2_COPY_ARR##N
  68. __STRING2_COPY_TYPE (2);
  69. __STRING2_COPY_TYPE (3);
  70. __STRING2_COPY_TYPE (4);
  71. __STRING2_COPY_TYPE (5);
  72. __STRING2_COPY_TYPE (6);
  73. __STRING2_COPY_TYPE (7);
  74. __STRING2_COPY_TYPE (8);
  75. # undef __STRING2_COPY_TYPE
  76. #endif
  77. /* Dereferencing a pointer arg to run sizeof on it fails for the void
  78. pointer case, so we use this instead.
  79. Note that __x is evaluated twice. */
  80. #define __string2_1bptr_p(__x) \
  81. ((size_t)(const void *)((__x) + 1) - (size_t)(const void *)(__x) == 1)
  82. /* Set N bytes of S to C. */
  83. #if !defined _HAVE_STRING_ARCH_memset
  84. # if !__GNUC_PREREQ (3, 0)
  85. # if _STRING_INLINE_unaligned
  86. # define memset(s, c, n) \
  87. (__extension__ (__builtin_constant_p (n) && (n) <= 16 \
  88. ? ((n) == 1 \
  89. ? __memset_1 (s, c) \
  90. : __memset_gc (s, c, n)) \
  91. : (__builtin_constant_p (c) && (c) == '\0' \
  92. ? ({ void *__s = (s); __bzero (__s, n); __s; }) \
  93. : memset (s, c, n))))
  94. # define __memset_1(s, c) ({ void *__s = (s); \
  95. *((__uint8_t *) __s) = (__uint8_t) c; __s; })
  96. # define __memset_gc(s, c, n) \
  97. ({ void *__s = (s); \
  98. union { \
  99. unsigned int __ui; \
  100. unsigned short int __usi; \
  101. unsigned char __uc; \
  102. } *__u = __s; \
  103. __uint8_t __c = (__uint8_t) (c); \
  104. \
  105. /* This `switch' statement will be removed at compile-time. */ \
  106. switch ((unsigned int) (n)) \
  107. { \
  108. case 15: \
  109. __u->__ui = __c * 0x01010101; \
  110. __u = __extension__ ((void *) __u + 4); \
  111. case 11: \
  112. __u->__ui = __c * 0x01010101; \
  113. __u = __extension__ ((void *) __u + 4); \
  114. case 7: \
  115. __u->__ui = __c * 0x01010101; \
  116. __u = __extension__ ((void *) __u + 4); \
  117. case 3: \
  118. __u->__usi = (unsigned short int) __c * 0x0101; \
  119. __u = __extension__ ((void *) __u + 2); \
  120. __u->__uc = (unsigned char) __c; \
  121. break; \
  122. \
  123. case 14: \
  124. __u->__ui = __c * 0x01010101; \
  125. __u = __extension__ ((void *) __u + 4); \
  126. case 10: \
  127. __u->__ui = __c * 0x01010101; \
  128. __u = __extension__ ((void *) __u + 4); \
  129. case 6: \
  130. __u->__ui = __c * 0x01010101; \
  131. __u = __extension__ ((void *) __u + 4); \
  132. case 2: \
  133. __u->__usi = (unsigned short int) __c * 0x0101; \
  134. break; \
  135. \
  136. case 13: \
  137. __u->__ui = __c * 0x01010101; \
  138. __u = __extension__ ((void *) __u + 4); \
  139. case 9: \
  140. __u->__ui = __c * 0x01010101; \
  141. __u = __extension__ ((void *) __u + 4); \
  142. case 5: \
  143. __u->__ui = __c * 0x01010101; \
  144. __u = __extension__ ((void *) __u + 4); \
  145. case 1: \
  146. __u->__uc = (unsigned char) __c; \
  147. break; \
  148. \
  149. case 16: \
  150. __u->__ui = __c * 0x01010101; \
  151. __u = __extension__ ((void *) __u + 4); \
  152. case 12: \
  153. __u->__ui = __c * 0x01010101; \
  154. __u = __extension__ ((void *) __u + 4); \
  155. case 8: \
  156. __u->__ui = __c * 0x01010101; \
  157. __u = __extension__ ((void *) __u + 4); \
  158. case 4: \
  159. __u->__ui = __c * 0x01010101; \
  160. case 0: \
  161. break; \
  162. } \
  163. \
  164. __s; })
  165. # else
  166. # define memset(s, c, n) \
  167. (__extension__ (__builtin_constant_p (c) && (c) == '\0' \
  168. ? ({ void *__s = (s); __bzero (__s, n); __s; }) \
  169. : memset (s, c, n)))
  170. # endif
  171. # endif
  172. /* GCC < 3.0 optimizes memset(s, 0, n) but not bzero(s, n).
  173. The optimization is broken before EGCS 1.1.
  174. GCC 3.0+ has __builtin_bzero as well, but at least till GCC 3.4
  175. if it decides to call the library function, it calls memset
  176. and not bzero. */
  177. # if __GNUC_PREREQ (2, 91)
  178. # define __bzero(s, n) __builtin_memset (s, '\0', n)
  179. # endif
  180. #endif
  181. /* Copy N bytes from SRC to DEST, returning pointer to byte following the
  182. last copied. */
  183. #ifdef __USE_GNU
  184. # if !defined _HAVE_STRING_ARCH_mempcpy || defined _FORCE_INLINES
  185. # ifndef _HAVE_STRING_ARCH_mempcpy
  186. # if __GNUC_PREREQ (3, 4)
  187. # define __mempcpy(dest, src, n) __builtin_mempcpy (dest, src, n)
  188. # elif __GNUC_PREREQ (3, 0)
  189. # define __mempcpy(dest, src, n) \
  190. (__extension__ (__builtin_constant_p (src) && __builtin_constant_p (n) \
  191. && __string2_1bptr_p (src) && n <= 8 \
  192. ? __builtin_memcpy (dest, src, n) + (n) \
  193. : __mempcpy (dest, src, n)))
  194. # else
  195. # define __mempcpy(dest, src, n) \
  196. (__extension__ (__builtin_constant_p (src) && __builtin_constant_p (n) \
  197. && __string2_1bptr_p (src) && n <= 8 \
  198. ? __mempcpy_small (dest, __mempcpy_args (src), n) \
  199. : __mempcpy (dest, src, n)))
  200. # endif
  201. /* In glibc we use this function frequently but for namespace reasons
  202. we have to use the name `__mempcpy'. */
  203. # define mempcpy(dest, src, n) __mempcpy (dest, src, n)
  204. # endif
  205. # if !__GNUC_PREREQ (3, 0) || defined _FORCE_INLINES
  206. # if _STRING_INLINE_unaligned
  207. # ifndef _FORCE_INLINES
  208. # define __mempcpy_args(src) \
  209. ((const char *) (src))[0], ((const char *) (src))[2], \
  210. ((const char *) (src))[4], ((const char *) (src))[6], \
  211. __extension__ __STRING2_SMALL_GET16 (src, 0), \
  212. __extension__ __STRING2_SMALL_GET16 (src, 4), \
  213. __extension__ __STRING2_SMALL_GET32 (src, 0), \
  214. __extension__ __STRING2_SMALL_GET32 (src, 4)
  215. # endif
  216. __STRING_INLINE void *__mempcpy_small (void *, char, char, char, char,
  217. __uint16_t, __uint16_t, __uint32_t,
  218. __uint32_t, size_t);
  219. __STRING_INLINE void *
  220. __mempcpy_small (void *__dest1,
  221. char __src0_1, char __src2_1, char __src4_1, char __src6_1,
  222. __uint16_t __src0_2, __uint16_t __src4_2,
  223. __uint32_t __src0_4, __uint32_t __src4_4,
  224. size_t __srclen)
  225. {
  226. union {
  227. __uint32_t __ui;
  228. __uint16_t __usi;
  229. unsigned char __uc;
  230. unsigned char __c;
  231. } *__u = __dest1;
  232. switch ((unsigned int) __srclen)
  233. {
  234. case 1:
  235. __u->__c = __src0_1;
  236. __u = __extension__ ((void *) __u + 1);
  237. break;
  238. case 2:
  239. __u->__usi = __src0_2;
  240. __u = __extension__ ((void *) __u + 2);
  241. break;
  242. case 3:
  243. __u->__usi = __src0_2;
  244. __u = __extension__ ((void *) __u + 2);
  245. __u->__c = __src2_1;
  246. __u = __extension__ ((void *) __u + 1);
  247. break;
  248. case 4:
  249. __u->__ui = __src0_4;
  250. __u = __extension__ ((void *) __u + 4);
  251. break;
  252. case 5:
  253. __u->__ui = __src0_4;
  254. __u = __extension__ ((void *) __u + 4);
  255. __u->__c = __src4_1;
  256. __u = __extension__ ((void *) __u + 1);
  257. break;
  258. case 6:
  259. __u->__ui = __src0_4;
  260. __u = __extension__ ((void *) __u + 4);
  261. __u->__usi = __src4_2;
  262. __u = __extension__ ((void *) __u + 2);
  263. break;
  264. case 7:
  265. __u->__ui = __src0_4;
  266. __u = __extension__ ((void *) __u + 4);
  267. __u->__usi = __src4_2;
  268. __u = __extension__ ((void *) __u + 2);
  269. __u->__c = __src6_1;
  270. __u = __extension__ ((void *) __u + 1);
  271. break;
  272. case 8:
  273. __u->__ui = __src0_4;
  274. __u = __extension__ ((void *) __u + 4);
  275. __u->__ui = __src4_4;
  276. __u = __extension__ ((void *) __u + 4);
  277. break;
  278. }
  279. return (void *) __u;
  280. }
  281. # else
  282. # ifndef _FORCE_INLINES
  283. # define __mempcpy_args(src) \
  284. ((const char *) (src))[0], \
  285. __extension__ ((__STRING2_COPY_ARR2) \
  286. { { ((const char *) (src))[0], ((const char *) (src))[1] } }), \
  287. __extension__ ((__STRING2_COPY_ARR3) \
  288. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  289. ((const char *) (src))[2] } }), \
  290. __extension__ ((__STRING2_COPY_ARR4) \
  291. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  292. ((const char *) (src))[2], ((const char *) (src))[3] } }), \
  293. __extension__ ((__STRING2_COPY_ARR5) \
  294. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  295. ((const char *) (src))[2], ((const char *) (src))[3], \
  296. ((const char *) (src))[4] } }), \
  297. __extension__ ((__STRING2_COPY_ARR6) \
  298. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  299. ((const char *) (src))[2], ((const char *) (src))[3], \
  300. ((const char *) (src))[4], ((const char *) (src))[5] } }), \
  301. __extension__ ((__STRING2_COPY_ARR7) \
  302. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  303. ((const char *) (src))[2], ((const char *) (src))[3], \
  304. ((const char *) (src))[4], ((const char *) (src))[5], \
  305. ((const char *) (src))[6] } }), \
  306. __extension__ ((__STRING2_COPY_ARR8) \
  307. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  308. ((const char *) (src))[2], ((const char *) (src))[3], \
  309. ((const char *) (src))[4], ((const char *) (src))[5], \
  310. ((const char *) (src))[6], ((const char *) (src))[7] } })
  311. # endif
  312. __STRING_INLINE void *__mempcpy_small (void *, char, __STRING2_COPY_ARR2,
  313. __STRING2_COPY_ARR3,
  314. __STRING2_COPY_ARR4,
  315. __STRING2_COPY_ARR5,
  316. __STRING2_COPY_ARR6,
  317. __STRING2_COPY_ARR7,
  318. __STRING2_COPY_ARR8, size_t);
  319. __STRING_INLINE void *
  320. __mempcpy_small (void *__dest, char __src1,
  321. __STRING2_COPY_ARR2 __src2, __STRING2_COPY_ARR3 __src3,
  322. __STRING2_COPY_ARR4 __src4, __STRING2_COPY_ARR5 __src5,
  323. __STRING2_COPY_ARR6 __src6, __STRING2_COPY_ARR7 __src7,
  324. __STRING2_COPY_ARR8 __src8, size_t __srclen)
  325. {
  326. union {
  327. char __c;
  328. __STRING2_COPY_ARR2 __sca2;
  329. __STRING2_COPY_ARR3 __sca3;
  330. __STRING2_COPY_ARR4 __sca4;
  331. __STRING2_COPY_ARR5 __sca5;
  332. __STRING2_COPY_ARR6 __sca6;
  333. __STRING2_COPY_ARR7 __sca7;
  334. __STRING2_COPY_ARR8 __sca8;
  335. } *__u = __dest;
  336. switch ((unsigned int) __srclen)
  337. {
  338. case 1:
  339. __u->__c = __src1;
  340. break;
  341. case 2:
  342. __extension__ __u->__sca2 = __src2;
  343. break;
  344. case 3:
  345. __extension__ __u->__sca3 = __src3;
  346. break;
  347. case 4:
  348. __extension__ __u->__sca4 = __src4;
  349. break;
  350. case 5:
  351. __extension__ __u->__sca5 = __src5;
  352. break;
  353. case 6:
  354. __extension__ __u->__sca6 = __src6;
  355. break;
  356. case 7:
  357. __extension__ __u->__sca7 = __src7;
  358. break;
  359. case 8:
  360. __extension__ __u->__sca8 = __src8;
  361. break;
  362. }
  363. return __extension__ ((void *) __u + __srclen);
  364. }
  365. # endif
  366. # endif
  367. # endif
  368. #endif
  369. /* Return pointer to C in S. */
  370. #ifndef _HAVE_STRING_ARCH_strchr
  371. extern void *__rawmemchr (const void *__s, int __c);
  372. # if __GNUC_PREREQ (3, 2)
  373. # define strchr(s, c) \
  374. (__extension__ (__builtin_constant_p (c) && !__builtin_constant_p (s) \
  375. && (c) == '\0' \
  376. ? (char *) __rawmemchr (s, c) \
  377. : __builtin_strchr (s, c)))
  378. # else
  379. # define strchr(s, c) \
  380. (__extension__ (__builtin_constant_p (c) && (c) == '\0' \
  381. ? (char *) __rawmemchr (s, c) \
  382. : strchr (s, c)))
  383. # endif
  384. #endif
  385. /* Copy SRC to DEST. */
  386. #if (!defined _HAVE_STRING_ARCH_strcpy && !__GNUC_PREREQ (3, 0)) \
  387. || defined _FORCE_INLINES
  388. # if !defined _HAVE_STRING_ARCH_strcpy && !__GNUC_PREREQ (3, 0)
  389. # define strcpy(dest, src) \
  390. (__extension__ (__builtin_constant_p (src) \
  391. ? (__string2_1bptr_p (src) && strlen (src) + 1 <= 8 \
  392. ? __strcpy_small (dest, __strcpy_args (src), \
  393. strlen (src) + 1) \
  394. : (char *) memcpy (dest, src, strlen (src) + 1)) \
  395. : strcpy (dest, src)))
  396. # endif
  397. # if _STRING_INLINE_unaligned
  398. # ifndef _FORCE_INLINES
  399. # define __strcpy_args(src) \
  400. __extension__ __STRING2_SMALL_GET16 (src, 0), \
  401. __extension__ __STRING2_SMALL_GET16 (src, 4), \
  402. __extension__ __STRING2_SMALL_GET32 (src, 0), \
  403. __extension__ __STRING2_SMALL_GET32 (src, 4)
  404. # endif
  405. __STRING_INLINE char *__strcpy_small (char *, __uint16_t, __uint16_t,
  406. __uint32_t, __uint32_t, size_t);
  407. __STRING_INLINE char *
  408. __strcpy_small (char *__dest,
  409. __uint16_t __src0_2, __uint16_t __src4_2,
  410. __uint32_t __src0_4, __uint32_t __src4_4,
  411. size_t __srclen)
  412. {
  413. union {
  414. __uint32_t __ui;
  415. __uint16_t __usi;
  416. unsigned char __uc;
  417. } *__u = (void *) __dest;
  418. switch ((unsigned int) __srclen)
  419. {
  420. case 1:
  421. __u->__uc = '\0';
  422. break;
  423. case 2:
  424. __u->__usi = __src0_2;
  425. break;
  426. case 3:
  427. __u->__usi = __src0_2;
  428. __u = __extension__ ((void *) __u + 2);
  429. __u->__uc = '\0';
  430. break;
  431. case 4:
  432. __u->__ui = __src0_4;
  433. break;
  434. case 5:
  435. __u->__ui = __src0_4;
  436. __u = __extension__ ((void *) __u + 4);
  437. __u->__uc = '\0';
  438. break;
  439. case 6:
  440. __u->__ui = __src0_4;
  441. __u = __extension__ ((void *) __u + 4);
  442. __u->__usi = __src4_2;
  443. break;
  444. case 7:
  445. __u->__ui = __src0_4;
  446. __u = __extension__ ((void *) __u + 4);
  447. __u->__usi = __src4_2;
  448. __u = __extension__ ((void *) __u + 2);
  449. __u->__uc = '\0';
  450. break;
  451. case 8:
  452. __u->__ui = __src0_4;
  453. __u = __extension__ ((void *) __u + 4);
  454. __u->__ui = __src4_4;
  455. break;
  456. }
  457. return __dest;
  458. }
  459. # else
  460. # ifndef _FORCE_INLINES
  461. # define __strcpy_args(src) \
  462. __extension__ ((__STRING2_COPY_ARR2) \
  463. { { ((const char *) (src))[0], '\0' } }), \
  464. __extension__ ((__STRING2_COPY_ARR3) \
  465. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  466. '\0' } }), \
  467. __extension__ ((__STRING2_COPY_ARR4) \
  468. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  469. ((const char *) (src))[2], '\0' } }), \
  470. __extension__ ((__STRING2_COPY_ARR5) \
  471. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  472. ((const char *) (src))[2], ((const char *) (src))[3], \
  473. '\0' } }), \
  474. __extension__ ((__STRING2_COPY_ARR6) \
  475. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  476. ((const char *) (src))[2], ((const char *) (src))[3], \
  477. ((const char *) (src))[4], '\0' } }), \
  478. __extension__ ((__STRING2_COPY_ARR7) \
  479. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  480. ((const char *) (src))[2], ((const char *) (src))[3], \
  481. ((const char *) (src))[4], ((const char *) (src))[5], \
  482. '\0' } }), \
  483. __extension__ ((__STRING2_COPY_ARR8) \
  484. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  485. ((const char *) (src))[2], ((const char *) (src))[3], \
  486. ((const char *) (src))[4], ((const char *) (src))[5], \
  487. ((const char *) (src))[6], '\0' } })
  488. # endif
  489. __STRING_INLINE char *__strcpy_small (char *, __STRING2_COPY_ARR2,
  490. __STRING2_COPY_ARR3,
  491. __STRING2_COPY_ARR4,
  492. __STRING2_COPY_ARR5,
  493. __STRING2_COPY_ARR6,
  494. __STRING2_COPY_ARR7,
  495. __STRING2_COPY_ARR8, size_t);
  496. __STRING_INLINE char *
  497. __strcpy_small (char *__dest,
  498. __STRING2_COPY_ARR2 __src2, __STRING2_COPY_ARR3 __src3,
  499. __STRING2_COPY_ARR4 __src4, __STRING2_COPY_ARR5 __src5,
  500. __STRING2_COPY_ARR6 __src6, __STRING2_COPY_ARR7 __src7,
  501. __STRING2_COPY_ARR8 __src8, size_t __srclen)
  502. {
  503. union {
  504. char __c;
  505. __STRING2_COPY_ARR2 __sca2;
  506. __STRING2_COPY_ARR3 __sca3;
  507. __STRING2_COPY_ARR4 __sca4;
  508. __STRING2_COPY_ARR5 __sca5;
  509. __STRING2_COPY_ARR6 __sca6;
  510. __STRING2_COPY_ARR7 __sca7;
  511. __STRING2_COPY_ARR8 __sca8;
  512. } *__u = (void *) __dest;
  513. switch ((unsigned int) __srclen)
  514. {
  515. case 1:
  516. __u->__c = '\0';
  517. break;
  518. case 2:
  519. __extension__ __u->__sca2 = __src2;
  520. break;
  521. case 3:
  522. __extension__ __u->__sca3 = __src3;
  523. break;
  524. case 4:
  525. __extension__ __u->__sca4 = __src4;
  526. break;
  527. case 5:
  528. __extension__ __u->__sca5 = __src5;
  529. break;
  530. case 6:
  531. __extension__ __u->__sca6 = __src6;
  532. break;
  533. case 7:
  534. __extension__ __u->__sca7 = __src7;
  535. break;
  536. case 8:
  537. __extension__ __u->__sca8 = __src8;
  538. break;
  539. }
  540. return __dest;
  541. }
  542. # endif
  543. #endif
  544. /* Copy SRC to DEST, returning pointer to final NUL byte. */
  545. #ifdef __USE_GNU
  546. # if !defined _HAVE_STRING_ARCH_stpcpy || defined _FORCE_INLINES
  547. # ifndef _HAVE_STRING_ARCH_stpcpy
  548. # if __GNUC_PREREQ (3, 4)
  549. # define __stpcpy(dest, src) __builtin_stpcpy (dest, src)
  550. # elif __GNUC_PREREQ (3, 0)
  551. # define __stpcpy(dest, src) \
  552. (__extension__ (__builtin_constant_p (src) \
  553. ? (__string2_1bptr_p (src) && strlen (src) + 1 <= 8 \
  554. ? __builtin_strcpy (dest, src) + strlen (src) \
  555. : ((char *) (__mempcpy) (dest, src, strlen (src) + 1) \
  556. - 1)) \
  557. : __stpcpy (dest, src)))
  558. # else
  559. # define __stpcpy(dest, src) \
  560. (__extension__ (__builtin_constant_p (src) \
  561. ? (__string2_1bptr_p (src) && strlen (src) + 1 <= 8 \
  562. ? __stpcpy_small (dest, __stpcpy_args (src), \
  563. strlen (src) + 1) \
  564. : ((char *) (__mempcpy) (dest, src, strlen (src) + 1) \
  565. - 1)) \
  566. : __stpcpy (dest, src)))
  567. # endif
  568. /* In glibc we use this function frequently but for namespace reasons
  569. we have to use the name `__stpcpy'. */
  570. # define stpcpy(dest, src) __stpcpy (dest, src)
  571. # endif
  572. # if !__GNUC_PREREQ (3, 0) || defined _FORCE_INLINES
  573. # if _STRING_INLINE_unaligned
  574. # ifndef _FORCE_INLINES
  575. # define __stpcpy_args(src) \
  576. __extension__ __STRING2_SMALL_GET16 (src, 0), \
  577. __extension__ __STRING2_SMALL_GET16 (src, 4), \
  578. __extension__ __STRING2_SMALL_GET32 (src, 0), \
  579. __extension__ __STRING2_SMALL_GET32 (src, 4)
  580. # endif
  581. __STRING_INLINE char *__stpcpy_small (char *, __uint16_t, __uint16_t,
  582. __uint32_t, __uint32_t, size_t);
  583. __STRING_INLINE char *
  584. __stpcpy_small (char *__dest,
  585. __uint16_t __src0_2, __uint16_t __src4_2,
  586. __uint32_t __src0_4, __uint32_t __src4_4,
  587. size_t __srclen)
  588. {
  589. union {
  590. unsigned int __ui;
  591. unsigned short int __usi;
  592. unsigned char __uc;
  593. char __c;
  594. } *__u = (void *) __dest;
  595. switch ((unsigned int) __srclen)
  596. {
  597. case 1:
  598. __u->__uc = '\0';
  599. break;
  600. case 2:
  601. __u->__usi = __src0_2;
  602. __u = __extension__ ((void *) __u + 1);
  603. break;
  604. case 3:
  605. __u->__usi = __src0_2;
  606. __u = __extension__ ((void *) __u + 2);
  607. __u->__uc = '\0';
  608. break;
  609. case 4:
  610. __u->__ui = __src0_4;
  611. __u = __extension__ ((void *) __u + 3);
  612. break;
  613. case 5:
  614. __u->__ui = __src0_4;
  615. __u = __extension__ ((void *) __u + 4);
  616. __u->__uc = '\0';
  617. break;
  618. case 6:
  619. __u->__ui = __src0_4;
  620. __u = __extension__ ((void *) __u + 4);
  621. __u->__usi = __src4_2;
  622. __u = __extension__ ((void *) __u + 1);
  623. break;
  624. case 7:
  625. __u->__ui = __src0_4;
  626. __u = __extension__ ((void *) __u + 4);
  627. __u->__usi = __src4_2;
  628. __u = __extension__ ((void *) __u + 2);
  629. __u->__uc = '\0';
  630. break;
  631. case 8:
  632. __u->__ui = __src0_4;
  633. __u = __extension__ ((void *) __u + 4);
  634. __u->__ui = __src4_4;
  635. __u = __extension__ ((void *) __u + 3);
  636. break;
  637. }
  638. return &__u->__c;
  639. }
  640. # else
  641. # ifndef _FORCE_INLINES
  642. # define __stpcpy_args(src) \
  643. __extension__ ((__STRING2_COPY_ARR2) \
  644. { { ((const char *) (src))[0], '\0' } }), \
  645. __extension__ ((__STRING2_COPY_ARR3) \
  646. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  647. '\0' } }), \
  648. __extension__ ((__STRING2_COPY_ARR4) \
  649. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  650. ((const char *) (src))[2], '\0' } }), \
  651. __extension__ ((__STRING2_COPY_ARR5) \
  652. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  653. ((const char *) (src))[2], ((const char *) (src))[3], \
  654. '\0' } }), \
  655. __extension__ ((__STRING2_COPY_ARR6) \
  656. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  657. ((const char *) (src))[2], ((const char *) (src))[3], \
  658. ((const char *) (src))[4], '\0' } }), \
  659. __extension__ ((__STRING2_COPY_ARR7) \
  660. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  661. ((const char *) (src))[2], ((const char *) (src))[3], \
  662. ((const char *) (src))[4], ((const char *) (src))[5], \
  663. '\0' } }), \
  664. __extension__ ((__STRING2_COPY_ARR8) \
  665. { { ((const char *) (src))[0], ((const char *) (src))[1], \
  666. ((const char *) (src))[2], ((const char *) (src))[3], \
  667. ((const char *) (src))[4], ((const char *) (src))[5], \
  668. ((const char *) (src))[6], '\0' } })
  669. # endif
  670. __STRING_INLINE char *__stpcpy_small (char *, __STRING2_COPY_ARR2,
  671. __STRING2_COPY_ARR3,
  672. __STRING2_COPY_ARR4,
  673. __STRING2_COPY_ARR5,
  674. __STRING2_COPY_ARR6,
  675. __STRING2_COPY_ARR7,
  676. __STRING2_COPY_ARR8, size_t);
  677. __STRING_INLINE char *
  678. __stpcpy_small (char *__dest,
  679. __STRING2_COPY_ARR2 __src2, __STRING2_COPY_ARR3 __src3,
  680. __STRING2_COPY_ARR4 __src4, __STRING2_COPY_ARR5 __src5,
  681. __STRING2_COPY_ARR6 __src6, __STRING2_COPY_ARR7 __src7,
  682. __STRING2_COPY_ARR8 __src8, size_t __srclen)
  683. {
  684. union {
  685. char __c;
  686. __STRING2_COPY_ARR2 __sca2;
  687. __STRING2_COPY_ARR3 __sca3;
  688. __STRING2_COPY_ARR4 __sca4;
  689. __STRING2_COPY_ARR5 __sca5;
  690. __STRING2_COPY_ARR6 __sca6;
  691. __STRING2_COPY_ARR7 __sca7;
  692. __STRING2_COPY_ARR8 __sca8;
  693. } *__u = (void *) __dest;
  694. switch ((unsigned int) __srclen)
  695. {
  696. case 1:
  697. __u->__c = '\0';
  698. break;
  699. case 2:
  700. __extension__ __u->__sca2 = __src2;
  701. break;
  702. case 3:
  703. __extension__ __u->__sca3 = __src3;
  704. break;
  705. case 4:
  706. __extension__ __u->__sca4 = __src4;
  707. break;
  708. case 5:
  709. __extension__ __u->__sca5 = __src5;
  710. break;
  711. case 6:
  712. __extension__ __u->__sca6 = __src6;
  713. break;
  714. case 7:
  715. __extension__ __u->__sca7 = __src7;
  716. break;
  717. case 8:
  718. __extension__ __u->__sca8 = __src8;
  719. break;
  720. }
  721. return __dest + __srclen - 1;
  722. }
  723. # endif
  724. # endif
  725. # endif
  726. #endif
  727. /* Copy no more than N characters of SRC to DEST. */
  728. #ifndef _HAVE_STRING_ARCH_strncpy
  729. # if __GNUC_PREREQ (3, 2)
  730. # define strncpy(dest, src, n) __builtin_strncpy (dest, src, n)
  731. # else
  732. # define strncpy(dest, src, n) \
  733. (__extension__ (__builtin_constant_p (src) && __builtin_constant_p (n) \
  734. ? (strlen (src) + 1 >= ((size_t) (n)) \
  735. ? (char *) memcpy (dest, src, n) \
  736. : strncpy (dest, src, n)) \
  737. : strncpy (dest, src, n)))
  738. # endif
  739. #endif
  740. /* Append no more than N characters from SRC onto DEST. */
  741. #ifndef _HAVE_STRING_ARCH_strncat
  742. # ifdef _USE_STRING_ARCH_strchr
  743. # define strncat(dest, src, n) \
  744. (__extension__ ({ char *__dest = (dest); \
  745. __builtin_constant_p (src) && __builtin_constant_p (n) \
  746. ? (strlen (src) < ((size_t) (n)) \
  747. ? strcat (__dest, src) \
  748. : (*((char *) __mempcpy (strchr (__dest, '\0'), \
  749. src, n)) = '\0', __dest)) \
  750. : strncat (dest, src, n); }))
  751. # elif __GNUC_PREREQ (3, 2)
  752. # define strncat(dest, src, n) __builtin_strncat (dest, src, n)
  753. # else
  754. # define strncat(dest, src, n) \
  755. (__extension__ (__builtin_constant_p (src) && __builtin_constant_p (n) \
  756. ? (strlen (src) < ((size_t) (n)) \
  757. ? strcat (dest, src) \
  758. : strncat (dest, src, n)) \
  759. : strncat (dest, src, n)))
  760. # endif
  761. #endif
  762. /* Compare characters of S1 and S2. */
  763. #ifndef _HAVE_STRING_ARCH_strcmp
  764. # if __GNUC_PREREQ (3, 2)
  765. # define strcmp(s1, s2) \
  766. __extension__ \
  767. ({ size_t __s1_len, __s2_len; \
  768. (__builtin_constant_p (s1) && __builtin_constant_p (s2) \
  769. && (__s1_len = strlen (s1), __s2_len = strlen (s2), \
  770. (!__string2_1bptr_p (s1) || __s1_len >= 4) \
  771. && (!__string2_1bptr_p (s2) || __s2_len >= 4)) \
  772. ? __builtin_strcmp (s1, s2) \
  773. : (__builtin_constant_p (s1) && __string2_1bptr_p (s1) \
  774. && (__s1_len = strlen (s1), __s1_len < 4) \
  775. ? (__builtin_constant_p (s2) && __string2_1bptr_p (s2) \
  776. ? __builtin_strcmp (s1, s2) \
  777. : __strcmp_cg (s1, s2, __s1_len)) \
  778. : (__builtin_constant_p (s2) && __string2_1bptr_p (s2) \
  779. && (__s2_len = strlen (s2), __s2_len < 4) \
  780. ? (__builtin_constant_p (s1) && __string2_1bptr_p (s1) \
  781. ? __builtin_strcmp (s1, s2) \
  782. : __strcmp_gc (s1, s2, __s2_len)) \
  783. : __builtin_strcmp (s1, s2)))); })
  784. # else
  785. # define strcmp(s1, s2) \
  786. __extension__ \
  787. ({ size_t __s1_len, __s2_len; \
  788. (__builtin_constant_p (s1) && __builtin_constant_p (s2) \
  789. && (__s1_len = strlen (s1), __s2_len = strlen (s2), \
  790. (!__string2_1bptr_p (s1) || __s1_len >= 4) \
  791. && (!__string2_1bptr_p (s2) || __s2_len >= 4)) \
  792. ? memcmp ((const char *) (s1), (const char *) (s2), \
  793. (__s1_len < __s2_len ? __s1_len : __s2_len) + 1) \
  794. : (__builtin_constant_p (s1) && __string2_1bptr_p (s1) \
  795. && (__s1_len = strlen (s1), __s1_len < 4) \
  796. ? (__builtin_constant_p (s2) && __string2_1bptr_p (s2) \
  797. ? __strcmp_cc (s1, s2, __s1_len) \
  798. : __strcmp_cg (s1, s2, __s1_len)) \
  799. : (__builtin_constant_p (s2) && __string2_1bptr_p (s2) \
  800. && (__s2_len = strlen (s2), __s2_len < 4) \
  801. ? (__builtin_constant_p (s1) && __string2_1bptr_p (s1) \
  802. ? __strcmp_cc (s1, s2, __s2_len) \
  803. : __strcmp_gc (s1, s2, __s2_len)) \
  804. : strcmp (s1, s2)))); })
  805. # endif
  806. # define __strcmp_cc(s1, s2, l) \
  807. (__extension__ ({ int __result = \
  808. (((const unsigned char *) (const char *) (s1))[0] \
  809. - ((const unsigned char *) (const char *)(s2))[0]); \
  810. if (l > 0 && __result == 0) \
  811. { \
  812. __result = (((const unsigned char *) \
  813. (const char *) (s1))[1] \
  814. - ((const unsigned char *) \
  815. (const char *) (s2))[1]); \
  816. if (l > 1 && __result == 0) \
  817. { \
  818. __result = \
  819. (((const unsigned char *) \
  820. (const char *) (s1))[2] \
  821. - ((const unsigned char *) \
  822. (const char *) (s2))[2]); \
  823. if (l > 2 && __result == 0) \
  824. __result = \
  825. (((const unsigned char *) \
  826. (const char *) (s1))[3] \
  827. - ((const unsigned char *) \
  828. (const char *) (s2))[3]); \
  829. } \
  830. } \
  831. __result; }))
  832. # define __strcmp_cg(s1, s2, l1) \
  833. (__extension__ ({ const unsigned char *__s2 = \
  834. (const unsigned char *) (const char *) (s2); \
  835. int __result = \
  836. (((const unsigned char *) (const char *) (s1))[0] \
  837. - __s2[0]); \
  838. if (l1 > 0 && __result == 0) \
  839. { \
  840. __result = (((const unsigned char *) \
  841. (const char *) (s1))[1] - __s2[1]); \
  842. if (l1 > 1 && __result == 0) \
  843. { \
  844. __result = (((const unsigned char *) \
  845. (const char *) (s1))[2] - __s2[2]); \
  846. if (l1 > 2 && __result == 0) \
  847. __result = (((const unsigned char *) \
  848. (const char *) (s1))[3] \
  849. - __s2[3]); \
  850. } \
  851. } \
  852. __result; }))
  853. # define __strcmp_gc(s1, s2, l2) (- __strcmp_cg (s2, s1, l2))
  854. #endif
  855. /* Compare N characters of S1 and S2. */
  856. #ifndef _HAVE_STRING_ARCH_strncmp
  857. # define strncmp(s1, s2, n) \
  858. (__extension__ (__builtin_constant_p (n) \
  859. && ((__builtin_constant_p (s1) \
  860. && strlen (s1) < ((size_t) (n))) \
  861. || (__builtin_constant_p (s2) \
  862. && strlen (s2) < ((size_t) (n)))) \
  863. ? strcmp (s1, s2) : strncmp (s1, s2, n)))
  864. #endif
  865. /* Return the length of the initial segment of S which
  866. consists entirely of characters not in REJECT. */
  867. #if !defined _HAVE_STRING_ARCH_strcspn || defined _FORCE_INLINES
  868. # ifndef _HAVE_STRING_ARCH_strcspn
  869. # if __GNUC_PREREQ (3, 2)
  870. # define strcspn(s, reject) \
  871. __extension__ \
  872. ({ char __r0, __r1, __r2; \
  873. (__builtin_constant_p (reject) && __string2_1bptr_p (reject) \
  874. ? ((__builtin_constant_p (s) && __string2_1bptr_p (s)) \
  875. ? __builtin_strcspn (s, reject) \
  876. : ((__r0 = ((const char *) (reject))[0], __r0 == '\0') \
  877. ? strlen (s) \
  878. : ((__r1 = ((const char *) (reject))[1], __r1 == '\0') \
  879. ? __strcspn_c1 (s, __r0) \
  880. : ((__r2 = ((const char *) (reject))[2], __r2 == '\0') \
  881. ? __strcspn_c2 (s, __r0, __r1) \
  882. : (((const char *) (reject))[3] == '\0' \
  883. ? __strcspn_c3 (s, __r0, __r1, __r2) \
  884. : __builtin_strcspn (s, reject)))))) \
  885. : __builtin_strcspn (s, reject)); })
  886. # else
  887. # define strcspn(s, reject) \
  888. __extension__ \
  889. ({ char __r0, __r1, __r2; \
  890. (__builtin_constant_p (reject) && __string2_1bptr_p (reject) \
  891. ? ((__r0 = ((const char *) (reject))[0], __r0 == '\0') \
  892. ? strlen (s) \
  893. : ((__r1 = ((const char *) (reject))[1], __r1 == '\0') \
  894. ? __strcspn_c1 (s, __r0) \
  895. : ((__r2 = ((const char *) (reject))[2], __r2 == '\0') \
  896. ? __strcspn_c2 (s, __r0, __r1) \
  897. : (((const char *) (reject))[3] == '\0' \
  898. ? __strcspn_c3 (s, __r0, __r1, __r2) \
  899. : strcspn (s, reject))))) \
  900. : strcspn (s, reject)); })
  901. # endif
  902. # endif
  903. __STRING_INLINE size_t __strcspn_c1 (const char *__s, int __reject);
  904. __STRING_INLINE size_t
  905. __strcspn_c1 (const char *__s, int __reject)
  906. {
  907. size_t __result = 0;
  908. while (__s[__result] != '\0' && __s[__result] != __reject)
  909. ++__result;
  910. return __result;
  911. }
  912. __STRING_INLINE size_t __strcspn_c2 (const char *__s, int __reject1,
  913. int __reject2);
  914. __STRING_INLINE size_t
  915. __strcspn_c2 (const char *__s, int __reject1, int __reject2)
  916. {
  917. size_t __result = 0;
  918. while (__s[__result] != '\0' && __s[__result] != __reject1
  919. && __s[__result] != __reject2)
  920. ++__result;
  921. return __result;
  922. }
  923. __STRING_INLINE size_t __strcspn_c3 (const char *__s, int __reject1,
  924. int __reject2, int __reject3);
  925. __STRING_INLINE size_t
  926. __strcspn_c3 (const char *__s, int __reject1, int __reject2,
  927. int __reject3)
  928. {
  929. size_t __result = 0;
  930. while (__s[__result] != '\0' && __s[__result] != __reject1
  931. && __s[__result] != __reject2 && __s[__result] != __reject3)
  932. ++__result;
  933. return __result;
  934. }
  935. #endif
  936. /* Return the length of the initial segment of S which
  937. consists entirely of characters in ACCEPT. */
  938. #if !defined _HAVE_STRING_ARCH_strspn || defined _FORCE_INLINES
  939. # ifndef _HAVE_STRING_ARCH_strspn
  940. # if __GNUC_PREREQ (3, 2)
  941. # define strspn(s, accept) \
  942. __extension__ \
  943. ({ char __a0, __a1, __a2; \
  944. (__builtin_constant_p (accept) && __string2_1bptr_p (accept) \
  945. ? ((__builtin_constant_p (s) && __string2_1bptr_p (s)) \
  946. ? __builtin_strspn (s, accept) \
  947. : ((__a0 = ((const char *) (accept))[0], __a0 == '\0') \
  948. ? ((void) (s), (size_t) 0) \
  949. : ((__a1 = ((const char *) (accept))[1], __a1 == '\0') \
  950. ? __strspn_c1 (s, __a0) \
  951. : ((__a2 = ((const char *) (accept))[2], __a2 == '\0') \
  952. ? __strspn_c2 (s, __a0, __a1) \
  953. : (((const char *) (accept))[3] == '\0' \
  954. ? __strspn_c3 (s, __a0, __a1, __a2) \
  955. : __builtin_strspn (s, accept)))))) \
  956. : __builtin_strspn (s, accept)); })
  957. # else
  958. # define strspn(s, accept) \
  959. __extension__ \
  960. ({ char __a0, __a1, __a2; \
  961. (__builtin_constant_p (accept) && __string2_1bptr_p (accept) \
  962. ? ((__a0 = ((const char *) (accept))[0], __a0 == '\0') \
  963. ? ((void) (s), (size_t) 0) \
  964. : ((__a1 = ((const char *) (accept))[1], __a1 == '\0') \
  965. ? __strspn_c1 (s, __a0) \
  966. : ((__a2 = ((const char *) (accept))[2], __a2 == '\0') \
  967. ? __strspn_c2 (s, __a0, __a1) \
  968. : (((const char *) (accept))[3] == '\0' \
  969. ? __strspn_c3 (s, __a0, __a1, __a2) \
  970. : strspn (s, accept))))) \
  971. : strspn (s, accept)); })
  972. # endif
  973. # endif
  974. __STRING_INLINE size_t __strspn_c1 (const char *__s, int __accept);
  975. __STRING_INLINE size_t
  976. __strspn_c1 (const char *__s, int __accept)
  977. {
  978. size_t __result = 0;
  979. /* Please note that __accept never can be '\0'. */
  980. while (__s[__result] == __accept)
  981. ++__result;
  982. return __result;
  983. }
  984. __STRING_INLINE size_t __strspn_c2 (const char *__s, int __accept1,
  985. int __accept2);
  986. __STRING_INLINE size_t
  987. __strspn_c2 (const char *__s, int __accept1, int __accept2)
  988. {
  989. size_t __result = 0;
  990. /* Please note that __accept1 and __accept2 never can be '\0'. */
  991. while (__s[__result] == __accept1 || __s[__result] == __accept2)
  992. ++__result;
  993. return __result;
  994. }
  995. __STRING_INLINE size_t __strspn_c3 (const char *__s, int __accept1,
  996. int __accept2, int __accept3);
  997. __STRING_INLINE size_t
  998. __strspn_c3 (const char *__s, int __accept1, int __accept2, int __accept3)
  999. {
  1000. size_t __result = 0;
  1001. /* Please note that __accept1 to __accept3 never can be '\0'. */
  1002. while (__s[__result] == __accept1 || __s[__result] == __accept2
  1003. || __s[__result] == __accept3)
  1004. ++__result;
  1005. return __result;
  1006. }
  1007. #endif
  1008. /* Find the first occurrence in S of any character in ACCEPT. */
  1009. #if !defined _HAVE_STRING_ARCH_strpbrk || defined _FORCE_INLINES
  1010. # ifndef _HAVE_STRING_ARCH_strpbrk
  1011. # if __GNUC_PREREQ (3, 2)
  1012. # define strpbrk(s, accept) \
  1013. __extension__ \
  1014. ({ char __a0, __a1, __a2; \
  1015. (__builtin_constant_p (accept) && __string2_1bptr_p (accept) \
  1016. ? ((__builtin_constant_p (s) && __string2_1bptr_p (s)) \
  1017. ? __builtin_strpbrk (s, accept) \
  1018. : ((__a0 = ((const char *) (accept))[0], __a0 == '\0') \
  1019. ? ((void) (s), (char *) NULL) \
  1020. : ((__a1 = ((const char *) (accept))[1], __a1 == '\0') \
  1021. ? __builtin_strchr (s, __a0) \
  1022. : ((__a2 = ((const char *) (accept))[2], __a2 == '\0') \
  1023. ? __strpbrk_c2 (s, __a0, __a1) \
  1024. : (((const char *) (accept))[3] == '\0' \
  1025. ? __strpbrk_c3 (s, __a0, __a1, __a2) \
  1026. : __builtin_strpbrk (s, accept)))))) \
  1027. : __builtin_strpbrk (s, accept)); })
  1028. # else
  1029. # define strpbrk(s, accept) \
  1030. __extension__ \
  1031. ({ char __a0, __a1, __a2; \
  1032. (__builtin_constant_p (accept) && __string2_1bptr_p (accept) \
  1033. ? ((__a0 = ((const char *) (accept))[0], __a0 == '\0') \
  1034. ? ((void) (s), (char *) NULL) \
  1035. : ((__a1 = ((const char *) (accept))[1], __a1 == '\0') \
  1036. ? strchr (s, __a0) \
  1037. : ((__a2 = ((const char *) (accept))[2], __a2 == '\0') \
  1038. ? __strpbrk_c2 (s, __a0, __a1) \
  1039. : (((const char *) (accept))[3] == '\0' \
  1040. ? __strpbrk_c3 (s, __a0, __a1, __a2) \
  1041. : strpbrk (s, accept))))) \
  1042. : strpbrk (s, accept)); })
  1043. # endif
  1044. # endif
  1045. __STRING_INLINE char *__strpbrk_c2 (const char *__s, int __accept1,
  1046. int __accept2);
  1047. __STRING_INLINE char *
  1048. __strpbrk_c2 (const char *__s, int __accept1, int __accept2)
  1049. {
  1050. /* Please note that __accept1 and __accept2 never can be '\0'. */
  1051. while (*__s != '\0' && *__s != __accept1 && *__s != __accept2)
  1052. ++__s;
  1053. return *__s == '\0' ? NULL : (char *) (size_t) __s;
  1054. }
  1055. __STRING_INLINE char *__strpbrk_c3 (const char *__s, int __accept1,
  1056. int __accept2, int __accept3);
  1057. __STRING_INLINE char *
  1058. __strpbrk_c3 (const char *__s, int __accept1, int __accept2, int __accept3)
  1059. {
  1060. /* Please note that __accept1 to __accept3 never can be '\0'. */
  1061. while (*__s != '\0' && *__s != __accept1 && *__s != __accept2
  1062. && *__s != __accept3)
  1063. ++__s;
  1064. return *__s == '\0' ? NULL : (char *) (size_t) __s;
  1065. }
  1066. #endif
  1067. /* Find the first occurrence of NEEDLE in HAYSTACK. Newer gcc versions
  1068. do this itself. */
  1069. #if !defined _HAVE_STRING_ARCH_strstr && !__GNUC_PREREQ (2, 97)
  1070. # define strstr(haystack, needle) \
  1071. (__extension__ (__builtin_constant_p (needle) && __string2_1bptr_p (needle) \
  1072. ? (((const char *) (needle))[0] == '\0' \
  1073. ? (char *) (size_t) (haystack) \
  1074. : (((const char *) (needle))[1] == '\0' \
  1075. ? strchr (haystack, \
  1076. ((const char *) (needle))[0]) \
  1077. : strstr (haystack, needle))) \
  1078. : strstr (haystack, needle)))
  1079. #endif
  1080. #if !defined _HAVE_STRING_ARCH_strtok_r || defined _FORCE_INLINES
  1081. # ifndef _HAVE_STRING_ARCH_strtok_r
  1082. # define __strtok_r(s, sep, nextp) \
  1083. (__extension__ (__builtin_constant_p (sep) && __string2_1bptr_p (sep) \
  1084. && ((const char *) (sep))[0] != '\0' \
  1085. && ((const char *) (sep))[1] == '\0' \
  1086. ? __strtok_r_1c (s, ((const char *) (sep))[0], nextp) \
  1087. : __strtok_r (s, sep, nextp)))
  1088. # endif
  1089. __STRING_INLINE char *__strtok_r_1c (char *__s, char __sep, char **__nextp);
  1090. __STRING_INLINE char *
  1091. __strtok_r_1c (char *__s, char __sep, char **__nextp)
  1092. {
  1093. char *__result;
  1094. if (__s == NULL)
  1095. __s = *__nextp;
  1096. while (*__s == __sep)
  1097. ++__s;
  1098. __result = NULL;
  1099. if (*__s != '\0')
  1100. {
  1101. __result = __s++;
  1102. while (*__s != '\0')
  1103. if (*__s++ == __sep)
  1104. {
  1105. __s[-1] = '\0';
  1106. break;
  1107. }
  1108. }
  1109. *__nextp = __s;
  1110. return __result;
  1111. }
  1112. # ifdef __USE_POSIX
  1113. # define strtok_r(s, sep, nextp) __strtok_r (s, sep, nextp)
  1114. # endif
  1115. #endif
  1116. #if !defined _HAVE_STRING_ARCH_strsep || defined _FORCE_INLINES
  1117. # ifndef _HAVE_STRING_ARCH_strsep
  1118. extern char *__strsep_g (char **__stringp, const char *__delim);
  1119. # define __strsep(s, reject) \
  1120. __extension__ \
  1121. ({ char __r0, __r1, __r2; \
  1122. (__builtin_constant_p (reject) && __string2_1bptr_p (reject) \
  1123. && (__r0 = ((const char *) (reject))[0], \
  1124. ((const char *) (reject))[0] != '\0') \
  1125. ? ((__r1 = ((const char *) (reject))[1], \
  1126. ((const char *) (reject))[1] == '\0') \
  1127. ? __strsep_1c (s, __r0) \
  1128. : ((__r2 = ((const char *) (reject))[2], __r2 == '\0') \
  1129. ? __strsep_2c (s, __r0, __r1) \
  1130. : (((const char *) (reject))[3] == '\0' \
  1131. ? __strsep_3c (s, __r0, __r1, __r2) \
  1132. : __strsep_g (s, reject)))) \
  1133. : __strsep_g (s, reject)); })
  1134. # endif
  1135. __STRING_INLINE char *__strsep_1c (char **__s, char __reject);
  1136. __STRING_INLINE char *
  1137. __strsep_1c (char **__s, char __reject)
  1138. {
  1139. char *__retval = *__s;
  1140. if (__retval != NULL && (*__s = strchr (__retval, __reject)) != NULL)
  1141. *(*__s)++ = '\0';
  1142. return __retval;
  1143. }
  1144. __STRING_INLINE char *__strsep_2c (char **__s, char __reject1, char __reject2);
  1145. __STRING_INLINE char *
  1146. __strsep_2c (char **__s, char __reject1, char __reject2)
  1147. {
  1148. char *__retval = *__s;
  1149. if (__retval != NULL)
  1150. {
  1151. char *__cp = __retval;
  1152. while (1)
  1153. {
  1154. if (*__cp == '\0')
  1155. {
  1156. __cp = NULL;
  1157. break;
  1158. }
  1159. if (*__cp == __reject1 || *__cp == __reject2)
  1160. {
  1161. *__cp++ = '\0';
  1162. break;
  1163. }
  1164. ++__cp;
  1165. }
  1166. *__s = __cp;
  1167. }
  1168. return __retval;
  1169. }
  1170. __STRING_INLINE char *__strsep_3c (char **__s, char __reject1, char __reject2,
  1171. char __reject3);
  1172. __STRING_INLINE char *
  1173. __strsep_3c (char **__s, char __reject1, char __reject2, char __reject3)
  1174. {
  1175. char *__retval = *__s;
  1176. if (__retval != NULL)
  1177. {
  1178. char *__cp = __retval;
  1179. while (1)
  1180. {
  1181. if (*__cp == '\0')
  1182. {
  1183. __cp = NULL;
  1184. break;
  1185. }
  1186. if (*__cp == __reject1 || *__cp == __reject2 || *__cp == __reject3)
  1187. {
  1188. *__cp++ = '\0';
  1189. break;
  1190. }
  1191. ++__cp;
  1192. }
  1193. *__s = __cp;
  1194. }
  1195. return __retval;
  1196. }
  1197. # ifdef __USE_MISC
  1198. # define strsep(s, reject) __strsep (s, reject)
  1199. # endif
  1200. #endif
  1201. /* We need the memory allocation functions for inline strdup().
  1202. Referring to stdlib.h (even minimally) is not allowed
  1203. in any of the tight standards compliant modes. */
  1204. #ifdef __USE_MISC
  1205. # if !defined _HAVE_STRING_ARCH_strdup || !defined _HAVE_STRING_ARCH_strndup
  1206. # define __need_malloc_and_calloc
  1207. # include <stdlib.h>
  1208. # endif
  1209. # ifndef _HAVE_STRING_ARCH_strdup
  1210. extern char *__strdup (const char *__string) __THROW __attribute_malloc__;
  1211. # define __strdup(s) \
  1212. (__extension__ (__builtin_constant_p (s) && __string2_1bptr_p (s) \
  1213. ? (((const char *) (s))[0] == '\0' \
  1214. ? (char *) calloc ((size_t) 1, (size_t) 1) \
  1215. : ({ size_t __len = strlen (s) + 1; \
  1216. char *__retval = (char *) malloc (__len); \
  1217. if (__retval != NULL) \
  1218. __retval = (char *) memcpy (__retval, s, __len); \
  1219. __retval; })) \
  1220. : __strdup (s)))
  1221. # if defined __USE_XOPEN_EXTENDED || defined __USE_XOPEN2K8
  1222. # define strdup(s) __strdup (s)
  1223. # endif
  1224. # endif
  1225. # ifndef _HAVE_STRING_ARCH_strndup
  1226. extern char *__strndup (const char *__string, size_t __n)
  1227. __THROW __attribute_malloc__;
  1228. # define __strndup(s, n) \
  1229. (__extension__ (__builtin_constant_p (s) && __string2_1bptr_p (s) \
  1230. ? (((const char *) (s))[0] == '\0' \
  1231. ? (char *) calloc ((size_t) 1, (size_t) 1) \
  1232. : ({ size_t __len = strlen (s) + 1; \
  1233. size_t __n = (n); \
  1234. char *__retval; \
  1235. if (__n < __len) \
  1236. __len = __n + 1; \
  1237. __retval = (char *) malloc (__len); \
  1238. if (__retval != NULL) \
  1239. { \
  1240. __retval[__len - 1] = '\0'; \
  1241. __retval = (char *) memcpy (__retval, s, \
  1242. __len - 1); \
  1243. } \
  1244. __retval; })) \
  1245. : __strndup (s, n)))
  1246. # ifdef __USE_XOPEN2K8
  1247. # define strndup(s, n) __strndup (s, n)
  1248. # endif
  1249. # endif
  1250. #endif /* Use misc. or use GNU. */
  1251. #ifndef _FORCE_INLINES
  1252. # undef __STRING_INLINE
  1253. #endif
  1254. #endif /* No string inlines. */