X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrcoll.c;h=80ecbdff24d4977add1e4a88d85d1f51fb42757a;hb=e5456e3c2697c4e17fc9aa3439f2e305517b4d96;hp=898eeb565d49619a03092693979e8957a04f80c6;hpb=dcc8a8e99f69e090a03b7b868443addbc0817820;p=pdclib.old diff --git a/functions/string/strcoll.c b/functions/string/strcoll.c index 898eeb5..80ecbdf 100644 --- a/functions/string/strcoll.c +++ b/functions/string/strcoll.c @@ -6,3 +6,9 @@ // ---------------------------------------------------------------------------- int strcoll( const char * s1, const char * s2 ) { /* TODO */ }; + +/* PDPC code - unreviewed +{ + return (strcmp(s1, s2)); +} +*/