Render a cJSON item/entity/structure to text. */
| 1255 | |
| 1256 | /* Render a cJSON item/entity/structure to text. */ |
| 1257 | CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item) |
| 1258 | { |
| 1259 | return (char*)print(item, true, &global_hooks); |
| 1260 | } |
| 1261 | |
| 1262 | CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item) |
| 1263 | { |