Render a cJSON item/entity/structure to text. */
| 341 | |
| 342 | /* Render a cJSON item/entity/structure to text. */ |
| 343 | char *cJSON_Print(cJSON *item) {return print_value(item,0,1,0);} |
| 344 | char *cJSON_PrintUnformatted(cJSON *item) {return print_value(item,0,0,0);} |
| 345 | |
| 346 | char *cJSON_PrintBuffered(cJSON *item,int prebuffer,int fmt) |
nothing calls this directly
no test coverage detected