ICU-2881 Fix for Turkish casing
X-SVN-Rev: 11951
This commit is contained in:
parent
416e85bb33
commit
b0fa6b0130
@ -33,7 +33,7 @@ T_CString_toLowerCase(char* str)
|
||||
|
||||
if (str) {
|
||||
do
|
||||
*str = (char)tolower(*str);
|
||||
*str = (char)uprv_tolower(*str);
|
||||
while (*(str++));
|
||||
}
|
||||
|
||||
@ -47,7 +47,7 @@ T_CString_toUpperCase(char* str)
|
||||
|
||||
if (str) {
|
||||
do
|
||||
*str = (char)toupper(*str);
|
||||
*str = (char)uprv_toupper(*str);
|
||||
while (*(str++));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user