]> pd.if.org Git - pdclib/blob - functions/string/strcpy.c
1cc1c8e9eedfbec677d2008949211770da261d71
[pdclib] / functions / string / strcpy.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 char * strcpy( char * restrict s1, const char * restrict s2 ) { /* TODO */ };