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

Method readString

external/jsoncpp/jsoncpp.cpp:576–586  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

574}
575
576bool Reader::readString() {
577 Char c = 0;
578 while (current_ != end_) {
579 c = getNextChar();
580 if (c == '\\')
581 getNextChar();
582 else if (c == '"')
583 break;
584 }
585 return c == '"';
586}
587
588bool Reader::readObject(Token &tokenStart) {
589 Token tokenName;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected