| 257 | } |
| 258 | |
| 259 | void json_add_u64(struct json_stream *result, const char *fieldname, |
| 260 | uint64_t value) |
| 261 | { |
| 262 | json_add_primitive_fmt(result, fieldname, "%"PRIu64, value); |
| 263 | } |
| 264 | |
| 265 | void json_add_s64(struct json_stream *result, const char *fieldname, |
| 266 | int64_t value) |
no test coverage detected