Updated to fedora-glibc-20041018T0940
[glibc.git] / sysdeps / generic / strcpy_chk.c
blob5c1ae44cd078329b9ba42ce3ed80719864012aca
1 /* Copyright (C) 1991, 1997, 2000, 2003, 2004 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 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.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17 02111-1307 USA. */
19 #include <stddef.h>
20 #include <string.h>
21 #include <memcopy.h>
23 #undef strcpy
25 /* Copy SRC to DEST with checking of destination buffer overflow. */
26 char *
27 __strcpy_chk (dest, src, destlen)
28 char *dest;
29 const char *src;
30 size_t destlen;
32 reg_char c;
33 char *s = (char *) src;
34 const ptrdiff_t off = dest - s - 1;
38 if (__builtin_expect (destlen-- == 0, 0))
39 __chk_fail ();
40 c = *s++;
41 s[off] = c;
43 while (c != '\0');
45 return dest;