Bram Moolenaar | 520e1e4 | 2016-01-23 19:46:28 +0100 | [diff] [blame] | 1 | /* json.c */ |
Bram Moolenaar | 595e64e | 2016-02-07 19:19:53 +0100 | [diff] [blame] | 2 | char_u *json_encode(typval_T *val, int options); |
| 3 | char_u *json_encode_nr_expr(int nr, typval_T *val, int options); |
| 4 | int json_decode_all(js_read_T *reader, typval_T *res, int options); |
| 5 | int json_decode(js_read_T *reader, typval_T *res, int options); |
| 6 | int json_find_end(js_read_T *reader, int options); |
Bram Moolenaar | 520e1e4 | 2016-01-23 19:46:28 +0100 | [diff] [blame] | 7 | /* vim: set ft=c : */ |