| 155 | } |
| 156 | |
| 157 | void jw_object_string(struct json_writer *jw, const char *key, const char *value) |
| 158 | { |
| 159 | object_common(jw, key); |
| 160 | append_quoted_string(&jw->json, value); |
| 161 | } |
| 162 | |
| 163 | void jw_object_intmax(struct json_writer *jw, const char *key, intmax_t value) |
| 164 | { |