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

Function json_next

common/json_parse_simple.c:186–195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

184}
185
186const jsmntok_t *json_next(const jsmntok_t *tok)
187{
188 const jsmntok_t *t;
189 size_t i;
190
191 for (t = tok + 1, i = 0; i < tok->size; i++)
192 t = json_next(t);
193
194 return t;
195}
196
197const jsmntok_t *json_get_membern(const char *buffer,
198 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