| 327 | } |
| 328 | |
| 329 | void jw_array_bool(struct json_writer *jw, int value) |
| 330 | { |
| 331 | if (value) |
| 332 | jw_array_true(jw); |
| 333 | else |
| 334 | jw_array_false(jw); |
| 335 | } |
| 336 | |
| 337 | void jw_array_null(struct json_writer *jw) |
| 338 | { |
nothing calls this directly
no test coverage detected