| 148 | } |
| 149 | |
| 150 | void json_object_start(struct json_stream *js, const char *fieldname) |
| 151 | { |
| 152 | if (json_filter_down(&js->filter, fieldname)) |
| 153 | json_out_start(js->jout, fieldname, '{'); |
| 154 | } |
| 155 | |
| 156 | void json_object_end(struct json_stream *js) |
| 157 | { |