I am not sure I understood strcoll() and strxfrm() correctly, but this is it for...
[fw/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 #include <locale.h>
14
15 int strcoll( const char * s1, const char * s2 )
16 {
17     while ( ( *s1 ) && ( _PDCLIB_lconv.ctype[(unsigned char)*s1].collation == _PDCLIB_lconv.ctype[(unsigned char)*s2].collation ) )
18     {
19         ++s1;
20         ++s2;
21     }
22     return ( _PDCLIB_lconv.ctype[(unsigned char)*s1].collation == _PDCLIB_lconv.ctype[(unsigned char)*s2].collation );
23 }
24
25 #endif
26
27 #ifdef TEST
28 #include <_PDCLIB_test.h>
29
30 int main( void )
31 {
32     char cmpabcde[] = "abcde";
33     char empty[] = "";
34     TESTCASE( strcmp( abcde, cmpabcde ) == 0 );
35     TESTCASE( strcmp( abcde, abcdx ) < 0 );
36     TESTCASE( strcmp( abcdx, abcde ) > 0 );
37     TESTCASE( strcmp( empty, abcde ) < 0 );
38     TESTCASE( strcmp( abcde, empty ) > 0 );
39     return TEST_RESULTS;
40 }
41 #endif