branch update for HEAD-2003091401
[reactos.git] / lib / msvcrt / string / strncoll.c
index 161b3fd..eb68bc8 100644 (file)
@@ -6,11 +6,17 @@
    less than, equal to or greater than the collated form of S2.  */
 
 
+/*
+ * @unimplemented
+ */
 int _strncoll(const char* s1, const char* s2, size_t c)
 {
     return strncmp(s1, s2, c);
 }
 
+/*
+ * @unimplemented
+ */
 int _strnicoll(const char* s1, const char* s2, size_t c)
 {
     return _strnicmp(s1, s2, c);