5 /* strcpy( char *, const char * )
7 This file is part of the Public Domain C Library (PDCLib).
8 Permission is granted to use, modify, and / or redistribute at will.
15 char * strcpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 )
18 while ( ( *s1++ = *s2++ ) );
25 #include <_PDCLIB_test.h>
31 TESTCASE( strcpy( s, "" ) == s );
32 TESTCASE( s[0] == '\0' );
33 TESTCASE( s[1] == 'x' );
34 TESTCASE( strcpy( s, abcde ) == s );
35 TESTCASE( s[0] == 'a' );
36 TESTCASE( s[4] == 'e' );
37 TESTCASE( s[5] == '\0' );