update for HEAD-2003021201
[reactos.git] / lib / crtdll / wchar / wcsstr.c
diff --git a/lib/crtdll/wchar/wcsstr.c b/lib/crtdll/wchar/wcsstr.c
deleted file mode 100644 (file)
index ebe638f..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#include <crtdll/wchar.h>
-
-wchar_t *wcsstr(const wchar_t *s,const wchar_t *b)
-{
-       wchar_t *x;
-       wchar_t *y;
-       wchar_t *c;
-       x=(wchar_t *)s;
-       while (*x) {
-               if (*x==*b) {
-                       y=x;
-                       c=(wchar_t *)b;
-                       while (*y && *c && *y==*c) { 
-                               c++;
-                               y++; 
-                       }
-                       if (!*c)
-                               return x;
-               }
-               x++;
-       }
-       return NULL;
-}