1716024cdSPeter Avalos /*
2716024cdSPeter Avalos * Copyright (c) 1999
3716024cdSPeter Avalos * David E. O'Brien
4716024cdSPeter Avalos * Copyright (c) 1988, 1993
5716024cdSPeter Avalos * The Regents of the University of California. All rights reserved.
6716024cdSPeter Avalos *
7716024cdSPeter Avalos * Redistribution and use in source and binary forms, with or without
8716024cdSPeter Avalos * modification, are permitted provided that the following conditions
9716024cdSPeter Avalos * are met:
10716024cdSPeter Avalos * 1. Redistributions of source code must retain the above copyright
11716024cdSPeter Avalos * notice, this list of conditions and the following disclaimer.
12716024cdSPeter Avalos * 2. Redistributions in binary form must reproduce the above copyright
13716024cdSPeter Avalos * notice, this list of conditions and the following disclaimer in the
14716024cdSPeter Avalos * documentation and/or other materials provided with the distribution.
15716024cdSPeter Avalos * 3. Neither the name of the University nor the names of its contributors
16716024cdSPeter Avalos * may be used to endorse or promote products derived from this software
17716024cdSPeter Avalos * without specific prior written permission.
18716024cdSPeter Avalos *
19716024cdSPeter Avalos * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20716024cdSPeter Avalos * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21716024cdSPeter Avalos * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22716024cdSPeter Avalos * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23716024cdSPeter Avalos * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24716024cdSPeter Avalos * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25716024cdSPeter Avalos * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26716024cdSPeter Avalos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27716024cdSPeter Avalos * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28716024cdSPeter Avalos * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29716024cdSPeter Avalos * SUCH DAMAGE.
30716024cdSPeter Avalos *
31716024cdSPeter Avalos * @(#)strcpy.c 8.1 (Berkeley) 6/4/93
32*0d5acd74SJohn Marino * $FreeBSD: head/lib/libc/string/stpcpy.c 189137 2009-02-28 06:05:37Z das $
33716024cdSPeter Avalos */
34716024cdSPeter Avalos
35716024cdSPeter Avalos #include <string.h>
36716024cdSPeter Avalos
37716024cdSPeter Avalos char *
stpcpy(char * __restrict to,const char * __restrict from)38*0d5acd74SJohn Marino stpcpy(char * __restrict to, const char * __restrict from)
39716024cdSPeter Avalos {
40716024cdSPeter Avalos
41716024cdSPeter Avalos for (; (*to = *from); ++from, ++to);
42716024cdSPeter Avalos return(to);
43716024cdSPeter Avalos }
44