mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-14 17:24:01 +00:00
ICU-2881 Fix for Turkish casing
X-SVN-Rev: 11951
This commit is contained in:
parent
416e85bb33
commit
b0fa6b0130
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue