| 890 | } |
| 891 | |
| 892 | json_value * json_parse (const json_char * json, size_t length) |
| 893 | { |
| 894 | json_settings settings = { 0 }; |
| 895 | return json_parse_ex (&settings, json, length, 0); |
| 896 | } |
| 897 | |
| 898 | void json_value_free_ex (json_settings * settings, json_value * value) |
| 899 | { |
nothing calls this directly
no test coverage detected