| 167 | } |
| 168 | |
| 169 | void jw_object_double(struct json_writer *jw, const char *key, int precision, |
| 170 | double value) |
| 171 | { |
| 172 | object_common(jw, key); |
| 173 | fmt_double(jw, precision, value); |
| 174 | } |
| 175 | |
| 176 | void jw_object_true(struct json_writer *jw, const char *key) |
| 177 | { |