| 1266 | } |
| 1267 | |
| 1268 | CJSON_PUBLIC(char *) cJSON_PrintUnformatted(const cJSON *item) |
| 1269 | { |
| 1270 | return (char*)print(item, false, &global_hooks); |
| 1271 | } |
| 1272 | |
| 1273 | CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt) |
| 1274 | { |
no test coverage detected
searching dependent graphs…