| 290 | } |
| 291 | |
| 292 | void json_add_s64(struct json_stream *result, const char *fieldname, |
| 293 | int64_t value) |
| 294 | { |
| 295 | json_add_primitive_fmt(result, fieldname, "%"PRIi64, value); |
| 296 | } |
| 297 | |
| 298 | void json_add_u32(struct json_stream *result, const char *fieldname, |
| 299 | uint32_t value) |
no test coverage detected