MCPcopy Create free account
hub / github.com/crownengine/crown / next

Function next

src/core/json/json.cpp:21–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19namespace json
20{
21 static const char *next(const char *json, const char c = 0)
22 {
23 CE_ENSURE(NULL != json);
24
25 if (c && c != *json) {
26 CE_FATAL("Expected '%c' got '%c'", c, *json);
27 }
28
29 return ++json;
30 }
31
32 static const char *skip_string(const char *json)
33 {

Callers 3

parse_boolFunction · 0.70
parse_arrayFunction · 0.70
parse_objectFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected