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