| 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. */ |
| 367 | static const char *parse_value(cJSON *item, const char *value) { |