update for HEAD-2003091401
[reactos.git] / lib / crtdll / string / strlwr.c
diff --git a/lib/crtdll/string/strlwr.c b/lib/crtdll/string/strlwr.c
deleted file mode 100644 (file)
index 131ec3f..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * The C RunTime DLL
- * 
- * Implements C run-time functionality as known from UNIX.
- *
- * Copyright 1996,1998 Marcus Meissner
- * Copyright 1996 Jukka Iivonen
- * Copyright 1997 Uwe Bonnes
- */
-
-#include <msvcrt/string.h>
-#include <msvcrt/ctype.h>
-
-char * _strlwr(char *x)
-{
-       char  *y=x;
-
-       while (*y) {
-               *y=tolower(*y);
-               y++;
-       }
-       return x;
-}