Utility to jump whitespace and cr/lf */
| 319 | |
| 320 | /* Utility to jump whitespace and cr/lf */ |
| 321 | static const char *skip(const char *in) {while (in && *in && (unsigned char)*in<=32) in++; return in;} |
| 322 | |
| 323 | /* Parse an object - create a new root, and populate. */ |
| 324 | cJSON *cJSON_ParseWithOpts(const char *value,const char **return_parse_end,int require_null_terminated) |
no outgoing calls
no test coverage detected