]> pd.if.org Git - pdclib/blob - functions/string/strcoll.c
Re-import from Subversion.
[pdclib] / functions / string / strcoll.c
1 /* ----------------------------------------------------------------------------
2  * $Id$
3  * ----------------------------------------------------------------------------
4  * Public Domain C Library - http://pdclib.sourceforge.net
5  * This code is Public Domain. Use, modify, and redistribute at will.
6  * --------------------------------------------------------------------------*/
7
8 /* TODO: Dummy function, does not support locales. */
9
10 int strcmp( const char * src_1, const char * src_2 );
11
12 int strcoll( const char * src_1, const char * src_2 )
13 {
14     return strcmp( src_1, src_2 );
15 }