Render a cJSON item/entity/structure to text. */
| 1300 | |
| 1301 | /* Render a cJSON item/entity/structure to text. */ |
| 1302 | CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item) |
| 1303 | { |
| 1304 | return (char*)print(item, true, &global_hooks); |
| 1305 | } |
| 1306 | |
| 1307 | CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item) |
| 1308 | { |
searching dependent graphs…