Default options for cJSON_Parse */
| 1220 | |
| 1221 | /* Default options for cJSON_Parse */ |
| 1222 | CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value) |
| 1223 | { |
| 1224 | return cJSON_ParseWithOpts(value, 0, 0); |
| 1225 | } |
| 1226 | |
| 1227 | CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length) |
| 1228 | { |
searching dependent graphs…