| 1225 | } |
| 1226 | |
| 1227 | CJSON_PUBLIC(cJSON *) cJSON_ParseWithLength(const char *value, size_t buffer_length) |
| 1228 | { |
| 1229 | return cJSON_ParseWithLengthOpts(value, buffer_length, 0, 0); |
| 1230 | } |
| 1231 | |
| 1232 | #define cjson_min(a, b) (((a) < (b)) ? (a) : (b)) |
| 1233 |
no test coverage detected
searching dependent graphs…