]> pd.if.org Git - pdclib/blobdiff - functions/string/strcoll.c
Removed old files.
[pdclib] / functions / string / strcoll.c
diff --git a/functions/string/strcoll.c b/functions/string/strcoll.c
deleted file mode 100644 (file)
index 3c841e5..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-/* ----------------------------------------------------------------------------
- * $Id$
- * ----------------------------------------------------------------------------
- * Public Domain C Library - http://pdclib.sourceforge.net
- * This code is Public Domain. Use, modify, and redistribute at will.
- * --------------------------------------------------------------------------*/
-
-/* TODO: Dummy function, does not support locales. */
-
-int strcmp( const char * src_1, const char * src_2 );
-
-int strcoll( const char * src_1, const char * src_2 )
-{
-    return strcmp( src_1, src_2 );
-}