Render a cJSON item/entity/structure to text. */
| 262 | |
| 263 | /* Render a cJSON item/entity/structure to text. */ |
| 264 | char *cJSON_Print(cJSON *item) {return print_value(item,0,1);} |
| 265 | char *cJSON_PrintUnformatted(cJSON *item) {return print_value(item,0,0);} |
| 266 | |
| 267 | void cJSON_PrintStr(cJSON *item, std::string& s) |
no test coverage detected