Default options for cJSON_Parse */
| 924 | |
| 925 | /* Default options for cJSON_Parse */ |
| 926 | cJSON *cJSON_Parse(const char *value) |
| 927 | { |
| 928 | return cJSON_ParseWithOpts(value, 0, 0); |
| 929 | } |
| 930 | |
| 931 | /* Render a cJSON item/entity/structure to text. */ |
| 932 | char *cJSON_Print(const cJSON *item) |
no test coverage detected