ICU-2881 Fix for Turkish casing

X-SVN-Rev: 11951
This commit is contained in:
George Rhoten 2003-05-15 21:19:21 +00:00
parent 416e85bb33
commit b0fa6b0130

View File

@ -33,7 +33,7 @@ T_CString_toLowerCase(char* str)
if (str) { if (str) {
do do
*str = (char)tolower(*str); *str = (char)uprv_tolower(*str);
while (*(str++)); while (*(str++));
} }
@ -47,7 +47,7 @@ T_CString_toUpperCase(char* str)
if (str) { if (str) {
do do
*str = (char)toupper(*str); *str = (char)uprv_toupper(*str);
while (*(str++)); while (*(str++));
} }