]> pd.if.org Git - pdclib/blobdiff - functions/string/strcpy.c
Removed old files.
[pdclib] / functions / string / strcpy.c
diff --git a/functions/string/strcpy.c b/functions/string/strcpy.c
deleted file mode 100644 (file)
index f9b340e..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-char * strcpy( char * restrict dest, const char * restrict src )
-{
-    char * tmp = dest;
-    while ( ( *dest++ = *src++ ) != '\0' )
-    {
-        /* EMPTY */
-    }
-    return tmp;
-}