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

Function skip_string

src/core/json/json.cpp:32–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30 }
31
32 static const char *skip_string(const char *json)
33 {
34 CE_ENSURE(NULL != json);
35
36 while (*++json) {
37 if (*json == '"') {
38 ++json;
39 return json;
40 } else if (*json == '\\') {
41 ++json;
42 }
43 }
44
45 return json;
46 }
47
48 static const char *skip_value(const char *json)
49 {

Callers 2

skip_valueFunction · 0.70
parse_objectFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected