Render a cJSON item/entity/structure to text. */
| 443 | |
| 444 | /* Render a cJSON item/entity/structure to text. */ |
| 445 | char *cJSON_Print(cJSON *item) |
| 446 | { |
| 447 | return print_value(item, 0, 1); |
| 448 | } |
| 449 | char *cJSON_PrintUnformatted(cJSON *item) |
| 450 | { |
| 451 | return print_value(item, 0, 0); |
no test coverage detected