MCPcopy Create free account
hub / github.com/cinder/Cinder / containsControlCharacter

Function containsControlCharacter

src/jsoncpp/jsoncpp.cpp:3060–3066  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3058namespace Json {
3059
3060static bool containsControlCharacter(const char* str) {
3061 while (*str) {
3062 if (isControlCharacter(*(str++)))
3063 return true;
3064 }
3065 return false;
3066}
3067
3068std::string valueToString(LargestInt value) {
3069 UIntToStringBuffer buffer;

Callers 1

valueToQuotedStringFunction · 0.85

Calls 1

isControlCharacterFunction · 0.85

Tested by

no test coverage detected