MCPcopy Create free account
hub / github.com/ElementsProject/lightning / json_next

Function json_next

common/json_parse_simple.c:139–148  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137}
138
139const jsmntok_t *json_next(const jsmntok_t *tok)
140{
141 const jsmntok_t *t;
142 size_t i;
143
144 for (t = tok + 1, i = 0; i < tok->size; i++)
145 t = json_next(t);
146
147 return t;
148}
149
150const jsmntok_t *json_get_membern(const char *buffer,
151 const jsmntok_t tok[],

Callers 3

json_parse_inputFunction · 0.70
json_tok_copyFunction · 0.70
json_tok_removeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected