ICU-3280 sync definition of unprintable with ICU4J

X-SVN-Rev: 13233
This commit is contained in:
Alan Liu 2003-09-29 20:41:54 +00:00
parent 375490bb0c
commit a75bbfba1c

View file

@ -68,7 +68,7 @@ static const UChar HEX[16] = {48,49,50,51,52,53,54,55, // 0-7
* Return true if the character is NOT printable ASCII.
*/
UBool ICU_Utility::isUnprintable(UChar32 c) {
return !(c == 0x0A || (c >= 0x20 && c <= 0x7E));
return !(c >= 0x20 && c <= 0x7E);
}
/**