1/* json.c */ 2char_u *json_encode(typval_T *val, int options); 3char_u *json_encode_nr_expr(int nr, typval_T *val, int options); 4int json_decode(js_read_T *reader, typval_T *res, int options); 5int json_find_end(js_read_T *reader, int options); 6void f_js_decode(typval_T *argvars, typval_T *rettv); 7void f_js_encode(typval_T *argvars, typval_T *rettv); 8void f_json_decode(typval_T *argvars, typval_T *rettv); 9void f_json_encode(typval_T *argvars, typval_T *rettv); 10/* vim: set ft=c : */ 11