update for HEAD-2003021201
[reactos.git] / lib / crtdll / wchar / wcsncmp.c
diff --git a/lib/crtdll/wchar/wcsncmp.c b/lib/crtdll/wchar/wcsncmp.c
deleted file mode 100644 (file)
index 6341f46..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <crtdll/wchar.h>
-
-int wcsncmp(const wchar_t * cs,const wchar_t * ct,size_t count)
-{
-  while ((*cs) == (*ct) && count > 0)
-  {
-    if (*cs == 0)
-      return 0;
-    cs++;
-    ct++;
-    count--;
-  }
-  return (*cs) - (*ct);
-       
-}
-