| 4123 | #endif |
| 4124 | |
| 4125 | static bool containsControlCharacter(const char* str) { |
| 4126 | while (*str) { |
| 4127 | if (isControlCharacter(*(str++))) |
| 4128 | return true; |
| 4129 | } |
| 4130 | return false; |
| 4131 | } |
| 4132 | |
| 4133 | static bool containsControlCharacter0(const char* str, unsigned len) { |
| 4134 | char const* end = str + len; |
no test coverage detected