MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / skip_ws

Method skip_ws

externals/picojson/picojson.h:689–697  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

687 return line_;
688 }
689 void skip_ws() {
690 while (1) {
691 int ch = getc();
692 if (!(ch == ' ' || ch == '\t' || ch == '\n' || ch == '\r')) {
693 ungetc();
694 break;
695 }
696 }
697 }
698 bool expect(const int expected) {
699 skip_ws();
700 if (getc() != expected) {

Callers 1

_parseFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected