mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
corrected parameter type for towupper.
svn path=/trunk/; revision=4187
This commit is contained in:
@@ -18,9 +18,9 @@
|
||||
* DISCLAIMED. This includes but is not limited to warranties of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
* $Revision: 1.7 $
|
||||
* $Author: chorns $
|
||||
* $Date: 2003/01/15 21:07:18 $
|
||||
* $Revision: 1.8 $
|
||||
* $Author: robd $
|
||||
* $Date: 2003/02/21 16:32:57 $
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -120,9 +120,9 @@ int iswupper(wint_t);
|
||||
int iswxdigit(wint_t);
|
||||
|
||||
//wchar_t towlower(wchar_t);
|
||||
wchar_t towupper(wchar_t);
|
||||
//wchar_t towupper(wchar_t);
|
||||
int towlower(wint_t);
|
||||
//int towupper(wint_t);
|
||||
int towupper(wint_t);
|
||||
|
||||
int isleadbyte(int);
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ int toupper(int c)
|
||||
}
|
||||
|
||||
#undef towupper
|
||||
wchar_t towupper(wchar_t c)
|
||||
int towupper(wint_t c)
|
||||
{
|
||||
if (iswctype (c, _LOWER))
|
||||
return (c + (L'A' - L'a'));
|
||||
|
||||
Reference in New Issue
Block a user