]> pd.if.org Git - pdclib/blob - functions/string/strcoll.c
58814d65ecd8d8aa0eb3998b93b898ca51291be5
[pdclib] / functions / string / strcoll.c
1 /* $Id$ */
2
3 /* strcoll( const char *, const char * )
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #include <string.h>
10
11 #ifndef REGTEST
12
13 /* TODO: Dummy function, PDCLib does not support locales yet. */
14 int strcoll( const char * s1, const char * s2 )
15 {
16     return strcmp( s1, s2 );
17 }
18
19 #endif
20
21 #ifdef TEST
22 #include <_PDCLIB_test.h>
23
24 int main( void )
25 {
26     char cmpabcde[] = "abcde";
27     char empty[] = "";
28     TESTCASE( strcmp( abcde, cmpabcde ) == 0 );
29     TESTCASE( strcmp( abcde, abcdx ) < 0 );
30     TESTCASE( strcmp( abcdx, abcde ) > 0 );
31     TESTCASE( strcmp( empty, abcde ) < 0 );
32     TESTCASE( strcmp( abcde, empty ) > 0 );
33     return TEST_RESULTS;
34 }
35 #endif