Render a cJSON item/entity/structure to text. */
| 1153 | |
| 1154 | /* Render a cJSON item/entity/structure to text. */ |
| 1155 | CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item) |
| 1156 | { |
| 1157 | return (char*)print(item, true, &global_hooks); |
| 1158 | } |
| 1159 | |
| 1160 | CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item) |
| 1161 | { |
no test coverage detected