| 1175 | |
| 1176 | /* Default options for cJSON_Parse */ |
| 1177 | CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value) |
| 1178 | { |
| 1179 | return cJSON_ParseWithOpts(value, 0, 0); |
| 1180 | } |
| 1181 | |
| 1182 | CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length) |
| 1183 | { |
no test coverage detected