cstring 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. // -*- C++ -*- forwarding header.
  2. // Copyright (C) 1997-2015 Free Software Foundation, Inc.
  3. //
  4. // This file is part of the GNU ISO C++ Library. This library is free
  5. // software; you can redistribute it and/or modify it under the
  6. // terms of the GNU General Public License as published by the
  7. // Free Software Foundation; either version 3, or (at your option)
  8. // any later version.
  9. // This 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
  12. // GNU General Public License for more details.
  13. // Under Section 7 of GPL version 3, you are granted additional
  14. // permissions described in the GCC Runtime Library Exception, version
  15. // 3.1, as published by the Free Software Foundation.
  16. // You should have received a copy of the GNU General Public License and
  17. // a copy of the GCC Runtime Library Exception along with this program;
  18. // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  19. // <http://www.gnu.org/licenses/>.
  20. /** @file cstring
  21. * This is a Standard C++ Library file. You should @c \#include this file
  22. * in your programs, rather than any of the @a *.h implementation files.
  23. *
  24. * This is the C++ version of the Standard C Library header @c string.h,
  25. * and its contents are (mostly) the same as that header, but are all
  26. * contained in the namespace @c std (except for names which are defined
  27. * as macros in C).
  28. */
  29. //
  30. // ISO C++ 14882: 20.4.6 C library
  31. //
  32. #pragma GCC system_header
  33. #include <bits/c++config.h>
  34. #include <string.h>
  35. #ifndef _GLIBCXX_CSTRING
  36. #define _GLIBCXX_CSTRING 1
  37. // Get rid of those macros defined in <string.h> in lieu of real functions.
  38. #undef memchr
  39. #undef memcmp
  40. #undef memcpy
  41. #undef memmove
  42. #undef memset
  43. #undef strcat
  44. #undef strchr
  45. #undef strcmp
  46. #undef strcoll
  47. #undef strcpy
  48. #undef strcspn
  49. #undef strerror
  50. #undef strlen
  51. #undef strncat
  52. #undef strncmp
  53. #undef strncpy
  54. #undef strpbrk
  55. #undef strrchr
  56. #undef strspn
  57. #undef strstr
  58. #undef strtok
  59. #undef strxfrm
  60. namespace std _GLIBCXX_VISIBILITY(default)
  61. {
  62. _GLIBCXX_BEGIN_NAMESPACE_VERSION
  63. using ::memchr;
  64. using ::memcmp;
  65. using ::memcpy;
  66. using ::memmove;
  67. using ::memset;
  68. using ::strcat;
  69. using ::strcmp;
  70. using ::strcoll;
  71. using ::strcpy;
  72. using ::strcspn;
  73. using ::strerror;
  74. using ::strlen;
  75. using ::strncat;
  76. using ::strncmp;
  77. using ::strncpy;
  78. using ::strspn;
  79. using ::strtok;
  80. using ::strxfrm;
  81. using ::strchr;
  82. using ::strpbrk;
  83. using ::strrchr;
  84. using ::strstr;
  85. #ifndef __CORRECT_ISO_CPP_STRING_H_PROTO
  86. inline void*
  87. memchr(void* __s, int __c, size_t __n)
  88. { return __builtin_memchr(__s, __c, __n); }
  89. inline char*
  90. strchr(char* __s, int __n)
  91. { return __builtin_strchr(__s, __n); }
  92. inline char*
  93. strpbrk(char* __s1, const char* __s2)
  94. { return __builtin_strpbrk(__s1, __s2); }
  95. inline char*
  96. strrchr(char* __s, int __n)
  97. { return __builtin_strrchr(__s, __n); }
  98. inline char*
  99. strstr(char* __s1, const char* __s2)
  100. { return __builtin_strstr(__s1, __s2); }
  101. #endif
  102. _GLIBCXX_END_NAMESPACE_VERSION
  103. } // namespace
  104. #endif