| 341 | } |
| 342 | |
| 343 | void jw_array_sub_jw(struct json_writer *jw, const struct json_writer *value) |
| 344 | { |
| 345 | assert_is_terminated(value); |
| 346 | |
| 347 | array_common(jw); |
| 348 | append_sub_jw(jw, value); |
| 349 | } |
| 350 | |
| 351 | void jw_array_argc_argv(struct json_writer *jw, int argc, const char **argv) |
| 352 | { |
nothing calls this directly
no test coverage detected