xref: /original-bsd/lib/libc/string/strcpy.c (revision 91abda3c)
1 /*
2  * Copyright (c) 1988 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #if defined(LIBC_SCCS) && !defined(lint)
9 static char sccsid[] = "@(#)strcpy.c	5.6 (Berkeley) 06/01/90";
10 #endif /* LIBC_SCCS and not lint */
11 
12 #include <string.h>
13 
14 char *
15 strcpy(to, from)
16 	register char *to, *from;
17 {
18 	char *save = to;
19 
20 	for (; *to = *from; ++from, ++to);
21 	return(save);
22 }
23