]> pd.if.org Git - pdclib/blobdiff - functions/string/strcmp.c
Removed old files.
[pdclib] / functions / string / strcmp.c
diff --git a/functions/string/strcmp.c b/functions/string/strcmp.c
deleted file mode 100644 (file)
index 874828e..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.
- * --------------------------------------------------------------------------*/
-
-int strcmp( const char * src_1, const char * src_2 )
-{
-    while ( ( *src_1 != '\0' ) && ( *src_1 == *src_2 ) )
-    {
-        ++src_1;
-        ++src_2;
-    }
-    return ( *src_1 - *src_2 );
-}