| 4160 | #endif |
| 4161 | |
| 4162 | static bool containsControlCharacter(const char* str) { |
| 4163 | while (*str) { |
| 4164 | if (isControlCharacter(*(str++))) |
| 4165 | return true; |
| 4166 | } |
| 4167 | return false; |
| 4168 | } |
| 4169 | |
| 4170 | static bool containsControlCharacter0(const char* str, unsigned len) { |
| 4171 | char const* end = str + len; |
no test coverage detected