]> pd.if.org Git - pdclib/blobdiff - functions/string/strcoll.c
Merged PDPCLIB and Therx code.
[pdclib] / functions / string / strcoll.c
index 898eeb565d49619a03092693979e8957a04f80c6..80ecbdff24d4977add1e4a88d85d1f51fb42757a 100644 (file)
@@ -6,3 +6,9 @@
 // ----------------------------------------------------------------------------
 
 int strcoll( const char * s1, const char * s2 ) { /* TODO */ };
+
+/* PDPC code - unreviewed
+{
+    return (strcmp(s1, s2));
+}
+*/