Render a cJSON item/entity/structure to text. */
| 449 | |
| 450 | /* Render a cJSON item/entity/structure to text. */ |
| 451 | char *cJSON_Print(cJSON *item) |
| 452 | { |
| 453 | return print_value(item, 0, 1); |
| 454 | } |
| 455 | char *cJSON_PrintUnformatted(cJSON *item) |
| 456 | { |
| 457 | return print_value(item, 0, 0); |
no test coverage detected