| 1094 | |
| 1095 | /* Default options for cJSON_Parse */ |
| 1096 | CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value) |
| 1097 | { |
| 1098 | return cJSON_ParseWithOpts(value, 0, 0); |
| 1099 | } |
| 1100 | |
| 1101 | #define cjson_min(a, b) ((a < b) ? a : b) |
| 1102 |
nothing calls this directly
no test coverage detected