]> pd.if.org Git - pdclib/blob - functions/string/strcoll.c
ebe9a450b5bc887ecab51d32770c80c2899f06bd
[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 <_PDCLIB_locale.h>
14
15 int strcoll( const char * s1, const char * s2 )
16 {
17     const _PDCLIB_ctype_t * ctype = _PDCLIB_threadlocale()->_CType;
18
19     while ( ( *s1 ) && ( ctype[(unsigned char)*s1].collation == ctype[(unsigned char)*s2].collation ) )
20     {
21         ++s1;
22         ++s2;
23     }
24     return ( ctype[(unsigned char)*s1].collation == ctype[(unsigned char)*s2].collation );
25 }
26
27 #endif
28
29 #ifdef TEST
30 #include <_PDCLIB_test.h>
31
32 int main( void )
33 {
34     char cmpabcde[] = "abcde";
35     char empty[] = "";
36     TESTCASE( strcmp( abcde, cmpabcde ) == 0 );
37     TESTCASE( strcmp( abcde, abcdx ) < 0 );
38     TESTCASE( strcmp( abcdx, abcde ) > 0 );
39     TESTCASE( strcmp( empty, abcde ) < 0 );
40     TESTCASE( strcmp( abcde, empty ) > 0 );
41     return TEST_RESULTS;
42 }
43 #endif