update for HEAD-2003091401
[reactos.git] / lib / msvcrt / wstring / wcscoll.c
index 21c51c2..e1c2727 100644 (file)
@@ -1,24 +1,36 @@
 
 #include <msvcrt/string.h>
 
+/*
+ * @unimplemented
+ */
 int wcscoll(const wchar_t *a1,const wchar_t *a2)
 {
   /* FIXME: handle collates */
   return wcscmp(a1,a2);
 }
 
+/*
+ * @unimplemented
+ */
 int _wcsicoll(const wchar_t *a1,const wchar_t *a2)
 {
   /* FIXME: handle collates */
   return _wcsicmp(a1,a2);
 }
 
+/*
+ * @unimplemented
+ */
 int _wcsncoll (const wchar_t *s1, const wchar_t *s2, size_t c)
 {
   /* FIXME: handle collates */
   return wcsncmp(s1,s2,c);
 }
 
+/*
+ * @unimplemented
+ */
 int _wcsnicoll (const wchar_t *s1, const wchar_t *s2, size_t c)
 {
   /* FIXME: handle collates */