| 269 | } |
| 270 | |
| 271 | void json_add_u32(struct json_stream *result, const char *fieldname, |
| 272 | uint32_t value) |
| 273 | { |
| 274 | json_add_primitive_fmt(result, fieldname, "%u", value); |
| 275 | } |
| 276 | |
| 277 | void json_add_s32(struct json_stream *result, const char *fieldname, |
| 278 | int32_t value) |
nothing calls this directly
no test coverage detected