source: trunk/essentials/app-arch/cpio/lib/stpcpy.c

Last change on this file was 3332, checked in by bird, 18 years ago

cpio 2.7

File size: 1.4 KB
Line 
1/* stpcpy.c -- copy a string and return pointer to end of new string
2 Copyright (C) 1992, 1995, 1997-1998, 2006 Free Software Foundation, Inc.
3
4 NOTE: The canonical source of this file is maintained with the GNU C Library.
5 Bugs can be reported to bug-glibc@prep.ai.mit.edu.
6
7 This program is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2, or (at your option) any
10 later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software Foundation,
19 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
20
21#include <config.h>
22
23#include <string.h>
24
25#undef __stpcpy
26#undef stpcpy
27
28#ifndef weak_alias
29# define __stpcpy stpcpy
30#endif
31
32/* Copy SRC to DEST, returning the address of the terminating '\0' in DEST. */
33char *
34__stpcpy (char *dest, const char *src)
35{
36 register char *d = dest;
37 register const char *s = src;
38
39 do
40 *d++ = *s;
41 while (*s++ != '\0');
42
43 return d - 1;
44}
45#ifdef weak_alias
46weak_alias (__stpcpy, stpcpy)
47#endif
Note: See TracBrowser for help on using the repository browser.