Render a cJSON item/entity/structure to text. */
| 361 | |
| 362 | /* Render a cJSON item/entity/structure to text. */ |
| 363 | char *cJSON_Print(cJSON *item) { return print_value(item, 0, 1); } |
| 364 | char *cJSON_PrintUnformatted(cJSON *item) { return print_value(item, 0, 0); } |
| 365 | |
| 366 | /* Parser core - when encountering text, process appropriately. */ |
no test coverage detected