branch update for HEAD-2003091401
[reactos.git] / lib / crtdll / ctype / tolower.c
diff --git a/lib/crtdll/ctype/tolower.c b/lib/crtdll/ctype/tolower.c
deleted file mode 100644 (file)
index e2c188c..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
-#include <msvcrt/ctype.h>
-
-#undef tolower
-int tolower(int c)
-{
-   if (_isctype (c, _UPPER))
-       return (c - ('A' - 'a'));
-   return(c);
-}
-
-#undef towlower
-wchar_t towlower(wchar_t c)
-{
-   if (iswctype (c, _UPPER))
-       return (c - (L'A' - L'a'));
-   return(c);
-}
-
-int _tolower(int c)
-{
-   if (_isctype (c, _UPPER))
-       return (c - ('A' - 'a'));
-   return(c);
-}
-
-/*
-wchar_t _towlower(wchar_t c)
-{
-   if (iswctype (c, _UPPER))
-       return (c - (L'A' - L'a'));
-   return(c);
-}
-*/
-
-