string3.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Copyright (C) 2004 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. #ifndef _STRING_H
  16. # error "Never use <bits/string3.h> directly; include <string.h> instead."
  17. #endif
  18. /* XXX This is temporarily.  We should not redefine any of the symbols
  19.    and instead integrate the error checking into the original
  20.    definitions.  */
  21. #undef memcpy
  22. #undef memmove
  23. #undef memset
  24. #undef strcat
  25. #undef strcpy
  26. #undef strncat
  27. #undef strncpy
  28. #ifdef __USE_GNU
  29. # undef mempcpy
  30. # undef stpcpy
  31. #endif
  32. #ifdef __USE_BSD
  33. # undef bcopy
  34. # undef bzero
  35. #endif
  36. #define memcpy(dest, src, len) 
  37.   ((__bos0 (dest) != (size_t) -1)
  38.    ? __builtin___memcpy_chk (dest, src, len, __bos0 (dest))
  39.    : __memcpy_ichk (dest, src, len))
  40. static __inline__ void *
  41. __attribute__ ((__always_inline__))
  42. __memcpy_ichk (void *__restrict __dest, const void *__restrict __src,
  43.        size_t __len)
  44. {
  45.   return __builtin___memcpy_chk (__dest, __src, __len, __bos0 (__dest));
  46. }
  47. #define memmove(dest, src, len) 
  48.   ((__bos0 (dest) != (size_t) -1)
  49.    ? __builtin___memmove_chk (dest, src, len, __bos0 (dest))
  50.    : __memmove_ichk (dest, src, len))
  51. static __inline__ void *
  52. __attribute__ ((__always_inline__))
  53. __memmove_ichk (void *__dest, const void *__src, size_t __len)
  54. {
  55.   return __builtin___memmove_chk (__dest, __src, __len, __bos0 (__dest));
  56. }
  57. #ifdef __USE_GNU
  58. # define mempcpy(dest, src, len) 
  59.   ((__bos0 (dest) != (size_t) -1)
  60.    ? __builtin___mempcpy_chk (dest, src, len, __bos0 (dest))
  61.    : __mempcpy_ichk (dest, src, len))
  62. static __inline__ void *
  63. __attribute__ ((__always_inline__))
  64. __mempcpy_ichk (void *__restrict __dest, const void *__restrict __src,
  65. size_t __len)
  66. {
  67.   return __builtin___mempcpy_chk (__dest, __src, __len, __bos0 (__dest));
  68. }
  69. #endif
  70. #define memset(dest, ch, len) 
  71.   ((__bos0 (dest) != (size_t) -1)
  72.    ? __builtin___memset_chk (dest, ch, len, __bos0 (dest))
  73.    : __memset_ichk (dest, ch, len))
  74. static __inline__ void *
  75. __attribute__ ((__always_inline__))
  76. __memset_ichk (void *__dest, int __ch, size_t __len)
  77. {
  78.   return __builtin___memset_chk (__dest, __ch, __len, __bos0 (__dest));
  79. }
  80. #ifdef __USE_BSD
  81. # define bcopy(src, dest, len) ((void) 
  82.   ((__bos0 (dest) != (size_t) -1)
  83.    ? __builtin___memmove_chk (dest, src, len, __bos0 (dest))
  84.    : __memmove_ichk (dest, src, len)))
  85. # define bzero(dest, len) ((void) 
  86.   ((__bos0 (dest) != (size_t) -1)
  87.    ? __builtin___memset_chk (dest, '', len, __bos0 (dest))
  88.    : __memset_ichk (dest, '', len)))
  89. #endif
  90. #define strcpy(dest, src) 
  91.   ((__bos (dest) != (size_t) -1)
  92.    ? __builtin___strcpy_chk (dest, src, __bos (dest))
  93.    : __strcpy_ichk (dest, src))
  94. static __inline__ char *
  95. __attribute__ ((__always_inline__))
  96. __strcpy_ichk (char *__restrict __dest, const char *__restrict __src)
  97. {
  98.   return __builtin___strcpy_chk (__dest, __src, __bos (__dest));
  99. }
  100. #ifdef __USE_GNU
  101. # define stpcpy(dest, src) 
  102.   ((__bos (dest) != (size_t) -1)
  103.    ? __builtin___stpcpy_chk (dest, src, __bos (dest))
  104.    : __stpcpy_ichk (dest, src))
  105. static __inline__ char *
  106. __attribute__ ((__always_inline__))
  107. __stpcpy_ichk (char *__restrict __dest, const char *__restrict __src)
  108. {
  109.   return __builtin___stpcpy_chk (__dest, __src, __bos (__dest));
  110. }
  111. #endif
  112. #define strncpy(dest, src, len) 
  113.   ((__bos (dest) != (size_t) -1)
  114.    ? __builtin___strncpy_chk (dest, src, len, __bos (dest))
  115.    : __strncpy_ichk (dest, src, len))
  116. static __inline__ char *
  117. __attribute__ ((__always_inline__))
  118. __strncpy_ichk (char *__restrict __dest, const char *__restrict __src,
  119. size_t __len)
  120. {
  121.   return __builtin___strncpy_chk (__dest, __src, __len, __bos (__dest));
  122. }
  123. #define strcat(dest, src) 
  124.   ((__bos (dest) != (size_t) -1)
  125.    ? __builtin___strcat_chk (dest, src, __bos (dest))
  126.    : __strcat_ichk (dest, src))
  127. static __inline__ char *
  128. __attribute__ ((__always_inline__))
  129. __strcat_ichk (char *__restrict __dest, const char *__restrict __src)
  130. {
  131.   return __builtin___strcat_chk (__dest, __src, __bos (__dest));
  132. }
  133. #define strncat(dest, src, len) 
  134.   ((__bos (dest) != (size_t) -1)
  135.    ? __builtin___strncat_chk (dest, src, len, __bos (dest))
  136.    : __strncat_ichk (dest, src, len))
  137. static __inline__ char *
  138. __attribute__ ((__always_inline__))
  139. __strncat_ichk (char *__restrict __dest, const char *__restrict __src,
  140. size_t __len)
  141. {
  142.   return __builtin___strncat_chk (__dest, __src, __len, __bos (__dest));
  143. }