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