strings.h 4.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*****************************************************************************/
  2. /* strings.h v8.2.2 */
  3. /* */
  4. /* Copyright (c) 2012-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 _STRINGS
  38. #define _STRINGS
  39. #include <string.h>
  40. #include <linkage.h>
  41. _IDECL int bcmp(const void *, const void *, size_t);
  42. _IDECL void bcopy(const void *, void *, size_t);
  43. _IDECL void bzero(void *, size_t);
  44. _CODE_ACCESS int ffs(int);
  45. _IDECL char *index(const char *, int);
  46. _IDECL char *rindex(const char *, int);
  47. _CODE_ACCESS int strcasecmp(const char *, const char *);
  48. _CODE_ACCESS int strncasecmp(const char *, const char *, size_t);
  49. #if defined(_INLINE) || defined(_STRINGS_IMPLEMENTATION)
  50. #if defined(_INLINE) || defined(_BCMP)
  51. _IDEFN int bcmp(const void *b1, const void *b2, size_t n)
  52. {
  53. return memcmp(b1, b2, n);
  54. }
  55. #endif /* _INLINE || _BCMP */
  56. #if defined(_INLINE) || defined(_BCOPY)
  57. _IDEFN void bcopy(const void *src, void *dst, size_t n)
  58. {
  59. memmove(dst, src, n);
  60. }
  61. #endif /* _INLINE || _BCOPY */
  62. #if defined(_INLINE) || defined(_BZERO)
  63. _IDEFN void bzero(void *b, size_t n)
  64. {
  65. memset(b, 0, n);
  66. }
  67. #endif /* _INLINE || _BZERO */
  68. #if defined(_INLINE) || defined(_INDEX)
  69. _IDEFN char *index(const char *a, int b)
  70. {
  71. return strchr(a, b);
  72. }
  73. #endif /* _INLINE || _INDEX */
  74. #if defined(_INLINE) || defined(_RINDEX)
  75. _IDEFN char *rindex(const char *a, int b)
  76. {
  77. return strrchr( a, b);
  78. }
  79. #endif /* _INLINE || _RINDEX */
  80. #endif /* _INLINE || _STRINGS_IMPLEMENTATION */
  81. #endif /* _STRINGS */