1 /* strcpy( char *, const char * )
3 This file is part of the Public Domain C Library (PDCLib).
4 Permission is granted to use, modify, and / or redistribute at will.
11 char * strcpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 )
14 while ( ( *s1++ = *s2++ ) );
22 #include "_PDCLIB_test.h"
27 TESTCASE( strcpy( s, "" ) == s );
28 TESTCASE( s[0] == '\0' );
29 TESTCASE( s[1] == 'x' );
30 TESTCASE( strcpy( s, abcde ) == s );
31 TESTCASE( s[0] == 'a' );
32 TESTCASE( s[4] == 'e' );
33 TESTCASE( s[5] == '\0' );