Default options for cJSON_Parse */
| 1182 | |
| 1183 | /* Default options for cJSON_Parse */ |
| 1184 | CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value) |
| 1185 | { |
| 1186 | return cJSON_ParseWithOpts(value, 0, 0); |
| 1187 | } |
| 1188 | |
| 1189 | CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length) |
| 1190 | { |
no test coverage detected