update for HEAD-2003091401
[reactos.git] / lib / msvcrt / wstring / wcsncpy.c
diff --git a/lib/msvcrt/wstring/wcsncpy.c b/lib/msvcrt/wstring/wcsncpy.c
deleted file mode 100644 (file)
index cd40d65..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <msvcrt/wchar.h>
-
-wchar_t * wcsncpy(wchar_t * dest,const wchar_t *src,size_t count)
-{
-   int i;
-   
-   for (i=0;i<count;i++)
-     {
-       dest[i] = src[i];
-       if (src[i] == 0)
-         {
-            return(dest);
-         }
-     }
-   return(dest);
-}
-
-
-
-