]> pd.if.org Git - pdclib/blob - functions/string/strcoll.c
Added some of <string.h>.
[pdclib] / functions / string / strcoll.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* strcoll( const char *, const char * )
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 /* TODO: Dummy function, PDCLib does not support locales yet. */
12
13 int strcmp( const char * s1, const char * s2 );
14
15 int strcoll( const char * s1, const char * s2 )
16 {
17     return strcmp( s1, s2 );
18 }