Default options for cJSON_Parse */
| 337 | } |
| 338 | /* Default options for cJSON_Parse */ |
| 339 | cJSON *cJSON_Parse(const char *value) {return cJSON_ParseWithOpts(value,0,0);} |
| 340 | |
| 341 | /* Render a cJSON item/entity/structure to text. */ |
| 342 | char *cJSON_Print(cJSON *item) {return print_value(item,0,1,0);} |
searching dependent graphs…