| 263 | } |
| 264 | |
| 265 | void json_add_s64(struct json_stream *result, const char *fieldname, |
| 266 | int64_t value) |
| 267 | { |
| 268 | json_add_primitive_fmt(result, fieldname, "%"PRIi64, value); |
| 269 | } |
| 270 | |
| 271 | void json_add_u32(struct json_stream *result, const char *fieldname, |
| 272 | uint32_t value) |
no test coverage detected