Fix by Royce3 to make _tolower() and _toupper() behave like their

MS counterparts

svn path=/trunk/; revision=4113
This commit is contained in:
Gé van Geldorp 2003-02-03 17:05:19 +00:00
parent 0f7e47f8bd
commit 38535d7610
2 changed files with 4 additions and 12 deletions

View file

@ -20,9 +20,7 @@ int towlower(wint_t c)
int _tolower(int c)
{
if (_isctype (c, _UPPER))
return (c - ('A' - 'a'));
return(c);
return (c - ('A' - 'a'));
}
/*
@ -31,9 +29,7 @@ int towupper(wint_t);
wchar_t _towlower(wchar_t c)
{
if (iswctype (c, _UPPER))
return (c - (L'A' - L'a'));
return(c);
return (c - (L'A' - L'a'));
}
*/

View file

@ -20,17 +20,13 @@ wchar_t towupper(wchar_t c)
int _toupper(int c)
{
if (_isctype (c, _LOWER))
return (c + ('A' - 'a'));
return(c);
return (c + ('A' - 'a'));
}
/*
wchar_t _towupper(wchar_t c)
{
if (iswctype (c, _LOWER))
return (c + (L'A' - L'a'));
return(c);
return (c + (L'A' - L'a'));
}
*/