Render a cJSON item/entity/structure to text. */
| 1261 | |
| 1262 | /* Render a cJSON item/entity/structure to text. */ |
| 1263 | CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item) |
| 1264 | { |
| 1265 | return (char*)print(item, true, &global_hooks); |
| 1266 | } |
| 1267 | |
| 1268 | CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item) |
| 1269 | { |
no test coverage detected
searching dependent graphs…