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