[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / lib / sdk / crt / wstring / wcsxfrm.c
diff --git a/reactos/lib/sdk/crt/wstring/wcsxfrm.c b/reactos/lib/sdk/crt/wstring/wcsxfrm.c
deleted file mode 100644 (file)
index 4178cd3..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * COPYRIGHT:   See COPYING in the top level directory
- * PROJECT:     ReactOS system libraries
- * FILE:        lib/sdk/crt/wstring/wcsxfrm.c
- * PURPOSE:     Unknown
- * PROGRAMER:   Unknown
- * UPDATE HISTORY:
- *              25/11/05: Added license header
- */
-
-#include <precomp.h>
-
-/*
- * @implemented
- */
-size_t CDECL wcsxfrm(wchar_t *dst,const wchar_t *src, size_t n)
-{
-  size_t r = 0;
-  int c;
-
-  if (n != 0) {
-    while ((c = *src++) != 0)
-    {
-      r++;
-      if (--n == 0)
-      {
-       while (*src++ != 0)
-         r++;
-       break;
-      }
-      *dst++ = c;
-    }
-    *dst = 0;
-  }
-  return r;
-}