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