]> pd.if.org Git - pdclib/blobdiff - functions/string/memcpy.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / string / memcpy.c
index 785b1cd4088d9098e681d0a50e6f263bf2509b59..ded60b1901282c59f460a9c110737495e050d053 100644 (file)
@@ -1,7 +1,3 @@
-/* $Id$ */
-
-/* Release $Name$ */
-
 /* memcpy( void *, const void *, size_t )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -10,6 +6,8 @@
 
 #include <string.h>
 
+#ifndef REGTEST
+
 void * memcpy( void * _PDCLIB_restrict s1, const void * _PDCLIB_restrict s2, size_t n )
 {
     char * dest = (char *) s1;
@@ -21,4 +19,20 @@ void * memcpy( void * _PDCLIB_restrict s1, const void * _PDCLIB_restrict s2, siz
     return s1;
 }
 
-#warning Test driver missing.
+#endif
+
+#ifdef TEST
+#include "_PDCLIB_test.h"
+
+int main( void )
+{
+    char s[] = "xxxxxxxxxxx";
+    TESTCASE( memcpy( s, abcde, 6 ) == s );
+    TESTCASE( s[4] == 'e' );
+    TESTCASE( s[5] == '\0' );
+    TESTCASE( memcpy( s + 5, abcde, 5 ) == s + 5 );
+    TESTCASE( s[9] == 'e' );
+    TESTCASE( s[10] == 'x' );
+    return TEST_RESULTS;
+}
+#endif