Render a cJSON item/entity/structure to text. */
| 930 | |
| 931 | /* Render a cJSON item/entity/structure to text. */ |
| 932 | char *cJSON_Print(const cJSON *item) |
| 933 | { |
| 934 | return (char*)print_value(item, 0, 1, 0); |
| 935 | } |
| 936 | |
| 937 | void cJSON_PurgeString(char *ptr) |
| 938 | { |
nothing calls this directly
no test coverage detected