3 /* memcpy( void *, const void *, size_t )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
13 void * memcpy( void * _PDCLIB_restrict s1, const void * _PDCLIB_restrict s2, size_t n )
15 char * dest = (char *) s1;
16 const char * src = (const char *) s2;
27 #include <_PDCLIB_test.h>
31 char s[] = "xxxxxxxxxxx";
32 TESTCASE( memcpy( s, abcde, 6 ) == s );
33 TESTCASE( s[4] == 'e' );
34 TESTCASE( s[5] == '\0' );
35 TESTCASE( memcpy( s + 5, abcde, 5 ) == s + 5 );
36 TESTCASE( s[9] == 'e' );
37 TESTCASE( s[10] == 'x' );