| 4168 | } |
| 4169 | |
| 4170 | static bool containsControlCharacter0(const char* str, unsigned len) { |
| 4171 | char const* end = str + len; |
| 4172 | while (end != str) { |
| 4173 | if (isControlCharacter(*str) || 0==*str) |
| 4174 | return true; |
| 4175 | ++str; |
| 4176 | } |
| 4177 | return false; |
| 4178 | } |
| 4179 | |
| 4180 | JSONCPP_STRING valueToString(LargestInt value) { |
| 4181 | UIntToStringBuffer buffer; |
no test coverage detected