Default options for cJSON_Parse */
| 338 | } |
| 339 | /* Default options for cJSON_Parse */ |
| 340 | cJSON *cJSON_Parse(const char *value) {return cJSON_ParseWithOpts(value,0,0);} |
| 341 | |
| 342 | /* Render a cJSON item/entity/structure to text. */ |
| 343 | char *cJSON_Print(cJSON *item) {return print_value(item,0,1,0);} |
nothing calls this directly
no test coverage detected