| 302 | } |
| 303 | |
| 304 | void json_add_s32(struct json_stream *result, const char *fieldname, |
| 305 | int32_t value) |
| 306 | { |
| 307 | json_add_primitive_fmt(result, fieldname, "%d", value); |
| 308 | } |
| 309 | |
| 310 | void json_add_bool(struct json_stream *result, const char *fieldname, bool value) |
| 311 | { |
no test coverage detected