X-Git-Url: http://git.jankratochvil.net/?p=reactos.git;a=blobdiff_plain;f=lib%2Fcrtdll%2Fctype%2Ftolower.c;fp=lib%2Fcrtdll%2Fctype%2Ftolower.c;h=0000000000000000000000000000000000000000;hp=e2c188c0dcb831e156387bf9e582c409728737c8;hb=7c0cf90e3b750f1f0dc83b2eec9e5c68a512c30f;hpb=ee8b63255465d8c28be3e7bd11628015708fc1ab diff --git a/lib/crtdll/ctype/tolower.c b/lib/crtdll/ctype/tolower.c deleted file mode 100644 index e2c188c..0000000 --- a/lib/crtdll/ctype/tolower.c +++ /dev/null @@ -1,36 +0,0 @@ -/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */ -#include - -#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); -} -*/ - -