1 /* strcoll( const char *, const char * )
3 This file is part of the Public Domain C Library (PDCLib).
4 Permission is granted to use, modify, and / or redistribute at will.
13 int strcoll( const char * s1, const char * s2 )
15 const struct _PDCLIB_ctype_t * ctype = _PDCLIB_lconv.ctype;
17 while ( ( *s1 ) && ( ctype[(unsigned char)*s1].collation == ctype[(unsigned char)*s2].collation ) )
22 return ( ctype[(unsigned char)*s1].collation == ctype[(unsigned char)*s2].collation );
29 #include "_PDCLIB_test.h"
33 char cmpabcde[] = "abcde";
35 TESTCASE( strcmp( abcde, cmpabcde ) == 0 );
36 TESTCASE( strcmp( abcde, abcdx ) < 0 );
37 TESTCASE( strcmp( abcdx, abcde ) > 0 );
38 TESTCASE( strcmp( empty, abcde ) < 0 );
39 TESTCASE( strcmp( abcde, empty ) > 0 );