Default options for cJSON_Parse */
| 1167 | |
| 1168 | /* Default options for cJSON_Parse */ |
| 1169 | CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value) |
| 1170 | { |
| 1171 | return cJSON_ParseWithOpts(value, 0, 0); |
| 1172 | } |
| 1173 | |
| 1174 | CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length) |
| 1175 | { |
no test coverage detected