MCPcopy Create free account
hub / github.com/ValveSoftware/Proton / containsControlCharacter

Function containsControlCharacter

vrclient_x64/jsoncpp.cpp:4124–4130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

valueToQuotedStringFunction · 0.85

Calls 1

isControlCharacterFunction · 0.85

Tested by

no test coverage detected