| 284 | } |
| 285 | |
| 286 | void json_add_u64(struct json_stream *result, const char *fieldname, |
| 287 | uint64_t value) |
| 288 | { |
| 289 | json_add_primitive_fmt(result, fieldname, "%"PRIu64, value); |
| 290 | } |
| 291 | |
| 292 | void json_add_s64(struct json_stream *result, const char *fieldname, |
| 293 | int64_t value) |
no test coverage detected