| 941 | } |
| 942 | |
| 943 | json_value * json_parse (const json_char * json, size_t length) |
| 944 | { |
| 945 | json_settings settings = { 0 }; |
| 946 | return json_parse_ex (&settings, json, length, 0); |
| 947 | } |
| 948 | |
| 949 | void json_value_free_ex (json_settings * settings, json_value * value) |
| 950 | { |