[SDK] One step further towards ReactOS source code tree restructure: the sdk folder...
[reactos.git] / reactos / lib / sdk / crt / string / strlwr.c
diff --git a/reactos/lib/sdk/crt/string/strlwr.c b/reactos/lib/sdk/crt/string/strlwr.c
deleted file mode 100644 (file)
index 5966a5b..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-
-#include <precomp.h>
-
-/*
- * @implemented
- */
-char * CDECL _strlwr(char *x)
-{
-       char  *y=x;
-
-       while (*y) {
-               *y=tolower(*y);
-               y++;
-       }
-       return x;
-}