| 126 | } |
| 127 | |
| 128 | inline bool IsPrintable(char32_t c) |
| 129 | { |
| 130 | if (c < 0x20) return false; |
| 131 | if (c < 0xE000) return true; |
| 132 | if (c < 0xE200) return false; |
| 133 | return true; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Check whether UNICODE character is whitespace or not, i.e. whether |
no outgoing calls
no test coverage detected