]> pd.if.org Git - pdclib/blob - functions/string/strcoll.c
Merged PDPCLIB and Therx code.
[pdclib] / functions / string / strcoll.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 int strcoll( const char * s1, const char * s2 ) { /* TODO */ };
9
10 /* PDPC code - unreviewed
11 {
12     return (strcmp(s1, s2));
13 }
14 */