X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrcoll.c;fp=functions%2Fstring%2Fstrcoll.c;h=51fc59f00e606d58332c564d5dfb797e6acdd0ea;hb=c2f1367984ba4153d892062759c3813020b65a9a;hp=0000000000000000000000000000000000000000;hpb=3220f577b186e04180acd7554a785c60dfb7ebb2;p=pdclib diff --git a/functions/string/strcoll.c b/functions/string/strcoll.c new file mode 100644 index 0000000..51fc59f --- /dev/null +++ b/functions/string/strcoll.c @@ -0,0 +1,18 @@ +/* $Id$ */ + +/* Release $Name$ */ + +/* strcoll( const char *, const char * ) + + This file is part of the Public Domain C Library (PDCLib). + Permission is granted to use, modify, and / or redistribute at will. +*/ + +/* TODO: Dummy function, PDCLib does not support locales yet. */ + +int strcmp( const char * s1, const char * s2 ); + +int strcoll( const char * s1, const char * s2 ) +{ + return strcmp( s1, s2 ); +}