MCPcopy Create free account
hub / github.com/Illumina/hap.py / containsControlCharacter

Function containsControlCharacter

external/jsoncpp/jsoncpp.cpp:3080–3086  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3078namespace Json {
3079
3080static bool containsControlCharacter(const char *str) {
3081 while (*str) {
3082 if (isControlCharacter(*(str++)))
3083 return true;
3084 }
3085 return false;
3086}
3087
3088std::string valueToString(LargestInt value) {
3089 UIntToStringBuffer buffer;

Callers 1

valueToQuotedStringFunction · 0.85

Calls 1

isControlCharacterFunction · 0.85

Tested by

no test coverage detected