MCPcopy Create free account
hub / github.com/altairwei/WizNotePlus / containsControlCharacter

Function containsControlCharacter

src/share/jsoncpp/jsoncpp.cpp:4162–4168  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

valueToQuotedStringFunction · 0.85

Calls 1

isControlCharacterFunction · 0.85

Tested by

no test coverage detected