| 349 | } |
| 350 | |
| 351 | void jw_array_argc_argv(struct json_writer *jw, int argc, const char **argv) |
| 352 | { |
| 353 | int k; |
| 354 | |
| 355 | for (k = 0; k < argc; k++) |
| 356 | jw_array_string(jw, argv[k]); |
| 357 | } |
| 358 | |
| 359 | void jw_array_argv(struct json_writer *jw, const char **argv) |
| 360 | { |
nothing calls this directly
no test coverage detected