MCPcopy Create free account
hub / github.com/MariaDB/server / json_skip_array_and_count

Function json_skip_array_and_count

strings/json_lib.c:1388–1398  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1386
1387
1388int json_skip_array_and_count(json_engine_t *je, int *n_items)
1389{
1390 json_engine_t j= *je;
1391 int res;
1392 *n_items= 0;
1393
1394 res= json_skip_level_and_count(&j, n_items);
1395 if (res)
1396 je->s.error= j.s.error;
1397 return res;
1398}
1399
1400
1401int json_skip_key(json_engine_t *j)

Callers 4

handle_matchFunction · 0.85
read_jsonMethod · 0.85
val_boolMethod · 0.85
val_strMethod · 0.85

Calls 1

Tested by

no test coverage detected