| 275 | } |
| 276 | |
| 277 | void json_add_s32(struct json_stream *result, const char *fieldname, |
| 278 | int32_t value) |
| 279 | { |
| 280 | json_add_primitive_fmt(result, fieldname, "%d", value); |
| 281 | } |
| 282 | |
| 283 | void json_add_stringn(struct json_stream *result, const char *fieldname, |
| 284 | const char *value TAKES, size_t value_len) |
no test coverage detected