]> pd.if.org Git - pdclib/blob - functions/string/strcpy.c
4f028759bf8cd0dddb560788f51c3433672da704
[pdclib] / functions / string / strcpy.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* strcpy( char *, const char * )
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 #include <_PDCLIB_aux.h>
12
13 char * strcpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 )
14 {
15     char * rc = s1;
16     while ( ( *s1++ = *s2++ ) );
17     return rc;
18 }
19
20 #warning Test driver missing.
21
22 #ifdef TEST
23 int main()
24 {
25     return 0;
26 }
27 #endif