Render a cJSON item/entity/structure to text. */
| 285 | |
| 286 | /* Render a cJSON item/entity/structure to text. */ |
| 287 | ESL_DECLARE(char *) cJSON_Print(cJSON *item) {return print_value(item,0,1);} |
| 288 | ESL_DECLARE(char *) cJSON_PrintUnformatted(cJSON *item) {return print_value(item,0,0);} |
| 289 | |
| 290 | /* Parser core - when encountering text, process appropriately. */ |
no test coverage detected