1 /* -*- buffer-read-only: t -*- vi: set ro: */
2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
3 /* stpcpy.c -- copy a string and return pointer to end of new string
4 Copyright (C) 1992, 1995, 1997-1998, 2006, 2009-2010 Free Software
7 NOTE: The canonical source of this file is maintained with the GNU C Library.
8 Bugs can be reported to bug-glibc@prep.ai.mit.edu.
10 This program is free software: you can redistribute it and/or modify it
11 under the terms of the GNU General Public License as published by the
12 Free Software Foundation; either version 3 of the License, or any
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
33 # define __stpcpy stpcpy
36 /* Copy SRC to DEST, returning the address of the terminating '\0' in DEST. */
38 __stpcpy (char *dest, const char *src)
40 register char *d = dest;
41 register const char *s = src;
50 weak_alias (__stpcpy, stpcpy)