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