Render a cJSON item/entity/structure to text. */
| 1246 | |
| 1247 | /* Render a cJSON item/entity/structure to text. */ |
| 1248 | CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item) |
| 1249 | { |
| 1250 | return (char*)print(item, true, &global_hooks); |
| 1251 | } |
| 1252 | |
| 1253 | CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item) |
| 1254 | { |