]> git.cworth.org Git - tar/blob - gnu/stpcpy.c
upstream: Fix extraction of device nodes.
[tar] / gnu / stpcpy.c
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
5    Foundation, Inc.
6
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.
9
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
13    later version.
14
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.
19
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/>.  */
22
23 #include <config.h>
24
25 #include <string.h>
26
27 #undef __stpcpy
28 #ifdef _LIBC
29 # undef stpcpy
30 #endif
31
32 #ifndef weak_alias
33 # define __stpcpy stpcpy
34 #endif
35
36 /* Copy SRC to DEST, returning the address of the terminating '\0' in DEST.  */
37 char *
38 __stpcpy (char *dest, const char *src)
39 {
40   register char *d = dest;
41   register const char *s = src;
42
43   do
44     *d++ = *s;
45   while (*s++ != '\0');
46
47   return d - 1;
48 }
49 #ifdef weak_alias
50 weak_alias (__stpcpy, stpcpy)
51 #endif