string.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  1. /*****************************************************************************/
  2. /* string.h v8.2.2 */
  3. /* */
  4. /* Copyright (c) 1993-2017 Texas Instruments Incorporated */
  5. /* http://www.ti.com/ */
  6. /* */
  7. /* Redistribution and use in source and binary forms, with or without */
  8. /* modification, are permitted provided that the following conditions */
  9. /* are met: */
  10. /* */
  11. /* Redistributions of source code must retain the above copyright */
  12. /* notice, this list of conditions and the following disclaimer. */
  13. /* */
  14. /* Redistributions in binary form must reproduce the above copyright */
  15. /* notice, this list of conditions and the following disclaimer in */
  16. /* the documentation and/or other materials provided with the */
  17. /* distribution. */
  18. /* */
  19. /* Neither the name of Texas Instruments Incorporated nor the names */
  20. /* of its contributors may be used to endorse or promote products */
  21. /* derived from this software without specific prior written */
  22. /* permission. */
  23. /* */
  24. /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
  25. /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
  26. /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */
  27. /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
  28. /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
  29. /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */
  30. /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
  31. /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */
  32. /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
  33. /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */
  34. /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
  35. /* */
  36. /*****************************************************************************/
  37. #ifndef _STRING
  38. #define _STRING
  39. #pragma diag_push
  40. #pragma CHECK_MISRA("-6.3") /* standard types required for standard headers */
  41. #pragma CHECK_MISRA("-19.1") /* #includes required for implementation */
  42. #pragma CHECK_MISRA("-20.1") /* standard headers must define standard names */
  43. #pragma CHECK_MISRA("-20.2") /* standard headers must define standard names */
  44. #ifdef __cplusplus
  45. /*---------------------------------------------------------------------------*/
  46. /* <cstring> IS RECOMMENDED OVER <string.h>. <string.h> IS PROVIDED FOR */
  47. /* COMPATIBILITY WITH C AND THIS USAGE IS DEPRECATED IN C++ */
  48. /*---------------------------------------------------------------------------*/
  49. extern "C" namespace std
  50. {
  51. #endif /* __cplusplus */
  52. #ifndef NULL
  53. #define NULL 0
  54. #endif
  55. #ifndef _SIZE_T
  56. #define _SIZE_T
  57. typedef __SIZE_T_TYPE__ size_t;
  58. #endif
  59. #include <linkage.h>
  60. #pragma diag_push
  61. #pragma CHECK_MISRA("-19.4") /* macros required for implementation */
  62. #define _OPT_IDECL _IDECL
  63. #pragma diag_pop
  64. _OPT_IDECL size_t strlen(const char *string);
  65. _OPT_IDECL char *strcpy(char * __restrict dest,
  66. const char * __restrict src);
  67. _OPT_IDECL char *strncpy(char * __restrict dest,
  68. const char * __restrict src, size_t n);
  69. _OPT_IDECL char *strcat(char * __restrict string1,
  70. const char * __restrict string2);
  71. _OPT_IDECL char *strncat(char * __restrict dest,
  72. const char * __restrict src, size_t n);
  73. _OPT_IDECL char *strchr(const char *string, int c);
  74. _OPT_IDECL char *strrchr(const char *string, int c);
  75. _OPT_IDECL int strcmp(const char *string1, const char *string2);
  76. _OPT_IDECL int strncmp(const char *string1, const char *string2, size_t n);
  77. _CODE_ACCESS int strcoll(const char *string1, const char *_string2);
  78. _CODE_ACCESS size_t strxfrm(char * __restrict to,
  79. const char * __restrict from, size_t n);
  80. _CODE_ACCESS char *strpbrk(const char *string, const char *chs);
  81. _CODE_ACCESS size_t strspn(const char *string, const char *chs);
  82. _CODE_ACCESS size_t strcspn(const char *string, const char *chs);
  83. _CODE_ACCESS char *strstr(const char *string1, const char *string2);
  84. _CODE_ACCESS char *strtok(char * __restrict str1,
  85. const char * __restrict str2);
  86. _CODE_ACCESS char *strerror(int _errno);
  87. _CODE_ACCESS char *strdup(const char *string);
  88. _CODE_ACCESS void *memmove(void *s1, const void *s2, size_t n);
  89. #pragma diag_push
  90. #pragma CHECK_MISRA("-16.4") /* false positives due to builtin declarations */
  91. _CODE_ACCESS void *memcpy(void * __restrict s1,
  92. const void * __restrict s2, size_t n);
  93. #pragma diag_pop
  94. _OPT_IDECL int memcmp(const void *cs, const void *ct, size_t n);
  95. _OPT_IDECL void *memchr(const void *cs, int c, size_t n);
  96. _CODE_ACCESS void *memset(void *mem, int ch, size_t length);
  97. #ifdef __cplusplus
  98. } /* extern "C" namespace std */
  99. #endif /* __cplusplus */
  100. #if defined(_INLINE) || defined(_STRING_IMPLEMENTATION)
  101. #ifdef __cplusplus
  102. namespace std {
  103. #endif
  104. #pragma diag_push
  105. #pragma CHECK_MISRA("-19.4") /* macros required for implementation */
  106. #define _OPT_IDEFN _IDEFN
  107. #pragma diag_pop
  108. #pragma diag_push /* functions */
  109. /* MISRA exceptions to avoid changing inline versions of the functions that
  110. would be linked in instead of included inline at different mf levels */
  111. /* these functions are very well-tested, stable, and efficient; it would
  112. introduce a high risk to implement new, separate MISRA versions just for the
  113. inline headers */
  114. #pragma CHECK_MISRA("-5.7") /* keep names intact */
  115. #pragma CHECK_MISRA("-6.1") /* false positive on use of char type */
  116. #pragma CHECK_MISRA("-8.5") /* need to define inline functions */
  117. #pragma CHECK_MISRA("-10.1") /* use implicit casts */
  118. #pragma CHECK_MISRA("-10.3") /* need casts */
  119. #pragma CHECK_MISRA("-11.5") /* casting away const required for standard impl */
  120. #pragma CHECK_MISRA("-12.1") /* avoid changing expressions */
  121. #pragma CHECK_MISRA("-12.2") /* avoid changing expressions */
  122. #pragma CHECK_MISRA("-12.4") /* avoid changing expressions */
  123. #pragma CHECK_MISRA("-12.5") /* avoid changing expressions */
  124. #pragma CHECK_MISRA("-12.6") /* avoid changing expressions */
  125. #pragma CHECK_MISRA("-12.13") /* ++/-- needed for reasonable implementation */
  126. #pragma CHECK_MISRA("-13.1") /* avoid changing expressions */
  127. #pragma CHECK_MISRA("-14.7") /* use multiple return points */
  128. #pragma CHECK_MISRA("-14.8") /* use non-compound statements */
  129. #pragma CHECK_MISRA("-14.9") /* use non-compound statements */
  130. #pragma CHECK_MISRA("-17.4") /* pointer arithmetic needed for reasonable impl */
  131. #pragma CHECK_MISRA("-17.6") /* false positive returning pointer-typed param */
  132. #if defined(_INLINE) || defined(_STRLEN)
  133. _OPT_IDEFN size_t strlen(const char *string)
  134. {
  135. size_t n = (size_t)-1;
  136. const char *s = string;
  137. do n++; while (*s++);
  138. return n;
  139. }
  140. #endif /* _INLINE || _STRLEN */
  141. #if defined(_INLINE) || defined(_STRCPY)
  142. _OPT_IDEFN char *strcpy(char * __restrict dest, const char * __restrict src)
  143. {
  144. char *d = dest;
  145. const char *s = src;
  146. while (*d++ = *s++);
  147. return dest;
  148. }
  149. #endif /* _INLINE || _STRCPY */
  150. #if defined(_INLINE) || defined(_STRNCPY)
  151. _OPT_IDEFN char *strncpy(char * __restrict dest,
  152. const char * __restrict src,
  153. size_t n)
  154. {
  155. if (n)
  156. {
  157. char *d = dest;
  158. const char *s = src;
  159. while ((*d++ = *s++) && --n); /* COPY STRING */
  160. if (n-- > 1) do *d++ = '\0'; while (--n); /* TERMINATION PADDING */
  161. }
  162. return dest;
  163. }
  164. #endif /* _INLINE || _STRNCPY */
  165. #if defined(_INLINE) || defined(_STRCAT)
  166. _OPT_IDEFN char *strcat(char * __restrict string1,
  167. const char * __restrict string2)
  168. {
  169. char *s1 = string1;
  170. const char *s2 = string2;
  171. while (*s1) s1++; /* FIND END OF STRING */
  172. while (*s1++ = *s2++); /* APPEND SECOND STRING */
  173. return string1;
  174. }
  175. #endif /* _INLINE || _STRCAT */
  176. #if defined(_INLINE) || defined(_STRNCAT)
  177. _OPT_IDEFN char *strncat(char * __restrict dest,
  178. const char * __restrict src, size_t n)
  179. {
  180. if (n)
  181. {
  182. char *d = dest;
  183. const char *s = src;
  184. while (*d) d++; /* FIND END OF STRING */
  185. while (n--)
  186. if (!(*d++ = *s++)) return dest; /* APPEND SECOND STRING */
  187. *d = 0;
  188. }
  189. return dest;
  190. }
  191. #endif /* _INLINE || _STRNCAT */
  192. #if defined(_INLINE) || defined(_STRCHR)
  193. _OPT_IDEFN char *strchr(const char *string, int c)
  194. {
  195. char tch, ch = c;
  196. const char *s = string;
  197. for (;;)
  198. {
  199. if ((tch = *s) == ch) return (char *) s;
  200. if (!tch) return (char *) 0;
  201. s++;
  202. }
  203. }
  204. #endif /* _INLINE || _STRCHR */
  205. #if defined(_INLINE) || defined(_STRRCHR)
  206. _OPT_IDEFN char *strrchr(const char *string, int c)
  207. {
  208. char tch, ch = c;
  209. char *result = 0;
  210. const char *s = string;
  211. for (;;)
  212. {
  213. if ((tch = *s) == ch) result = (char *) s;
  214. if (!tch) break;
  215. s++;
  216. }
  217. return result;
  218. }
  219. #endif /* _INLINE || _STRRCHR */
  220. #if defined(_INLINE) || defined(_STRCMP)
  221. _OPT_IDEFN int strcmp(const char *string1, const char *string2)
  222. {
  223. int c1, res;
  224. for (;;)
  225. {
  226. c1 = (unsigned char)*string1++;
  227. res = c1 - (unsigned char)*string2++;
  228. if (c1 == 0 || res != 0) break;
  229. }
  230. return res;
  231. }
  232. #endif /* _INLINE || _STRCMP */
  233. #if defined(_INLINE) || defined(_STRNCMP)
  234. _OPT_IDEFN int strncmp(const char *string1, const char *string2, size_t n)
  235. {
  236. if (n)
  237. {
  238. const char *s1 = string1;
  239. const char *s2 = string2;
  240. unsigned char cp;
  241. int result;
  242. do
  243. if (result = (unsigned char)*s1++ - (cp = (unsigned char)*s2++))
  244. return result;
  245. while (cp && --n);
  246. }
  247. return 0;
  248. }
  249. #endif /* _INLINE || _STRNCMP */
  250. #if defined(_INLINE) || defined(_MEMCMP)
  251. _OPT_IDEFN int memcmp(const void *cs, const void *ct, size_t n)
  252. {
  253. if (n)
  254. {
  255. const unsigned char *mem1 = (unsigned char *)cs;
  256. const unsigned char *mem2 = (unsigned char *)ct;
  257. int cp1, cp2;
  258. while ((cp1 = *mem1++) == (cp2 = *mem2++) && --n);
  259. return cp1 - cp2;
  260. }
  261. return 0;
  262. }
  263. #endif /* _INLINE || _MEMCMP */
  264. #if defined(_INLINE) || defined(_MEMCHR)
  265. _OPT_IDEFN void *memchr(const void *cs, int c, size_t n)
  266. {
  267. if (n)
  268. {
  269. const unsigned char *mem = (unsigned char *)cs;
  270. unsigned char ch = c;
  271. do
  272. if ( *mem == ch ) return (void *)mem;
  273. else mem++;
  274. while (--n);
  275. }
  276. return NULL;
  277. }
  278. #endif /* _INLINE || _MEMCHR */
  279. #ifdef __cplusplus
  280. } /* namespace std */
  281. #endif
  282. #endif /* (_INLINE || _STRING_IMPLEMENTATION) */
  283. #pragma diag_pop
  284. #endif /* ! _STRING */
  285. #pragma diag_push
  286. /* using declarations must occur outside header guard to support including both
  287. C and C++-wrapped version of header; see _CPP_STYLE_HEADER check */
  288. /* this code is for C++ mode only and thus also not relevant for MISRA */
  289. #pragma CHECK_MISRA("-19.15")
  290. #if defined(__cplusplus) && !defined(_CPP_STYLE_HEADER)
  291. using std::size_t;
  292. using std::strlen;
  293. using std::strcpy;
  294. using std::strncpy;
  295. using std::strcat;
  296. using std::strncat;
  297. using std::strchr;
  298. using std::strrchr;
  299. using std::strcmp;
  300. using std::strncmp;
  301. using std::strcoll;
  302. using std::strxfrm;
  303. using std::strpbrk;
  304. using std::strspn;
  305. using std::strcspn;
  306. using std::strstr;
  307. using std::strtok;
  308. using std::strerror;
  309. using std::strdup;
  310. using std::memmove;
  311. using std::memcpy;
  312. using std::memcmp;
  313. using std::memchr;
  314. using std::memset;
  315. #endif /* _CPP_STYLE_HEADER */
  316. #pragma diag_pop