Render a cJSON item/entity/structure to text. */
| 1262 | |
| 1263 | /* Render a cJSON item/entity/structure to text. */ |
| 1264 | CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item) |
| 1265 | { |
| 1266 | return (char*)print(item, true, &global_hooks); |
| 1267 | } |
| 1268 | |
| 1269 | CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item) |
| 1270 | { |