5 /* strcoll( const char *, const char * )
7 This file is part of the Public Domain C Library (PDCLib).
8 Permission is granted to use, modify, and / or redistribute at will.
11 /* TODO: Dummy function, PDCLib does not support locales yet. */
13 int strcmp( const char * s1, const char * s2 );
15 int strcoll( const char * s1, const char * s2 )
17 return strcmp( s1, s2 );
20 #warning Test driver missing.