| 186 | } |
| 187 | |
| 188 | void jw_object_bool(struct json_writer *jw, const char *key, int value) |
| 189 | { |
| 190 | if (value) |
| 191 | jw_object_true(jw, key); |
| 192 | else |
| 193 | jw_object_false(jw, key); |
| 194 | } |
| 195 | |
| 196 | void jw_object_null(struct json_writer *jw, const char *key) |
| 197 | { |
no test coverage detected