int json_encode_object_start(struct json_encoder *encoder)
This function starts the encoded JSON object. Usually this means writing out the initial “{” character.
| Arguments | Description |
|---|---|
| encoder | json_encoder to use |
0 on success.
static int imgr_list(struct nmgr_jbuf *njb) { struct json_encoder *enc; struct json_value array; ... json_encode_object_start(enc); json_encode_object_entry(enc, "images", &array); json_encode_object_finish(enc); return 0; }