| 1386 | |
| 1387 | |
| 1388 | int 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 | |
| 1401 | int json_skip_key(json_engine_t *j) |
no test coverage detected