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

Function containsControlCharacter

src/jsoncpp.cpp:4125–4131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

valueToQuotedStringFunction · 0.85

Calls 1

isControlCharacterFunction · 0.85

Tested by

no test coverage detected