Utility to jump whitespace and cr/lf */
| 419 | |
| 420 | /* Utility to jump whitespace and cr/lf */ |
| 421 | static const char *skip(const char *in) |
| 422 | { |
| 423 | while (in && *in && (unsigned char) *in <= 32) |
| 424 | in++; |
| 425 | return in; |
| 426 | } |
| 427 | |
| 428 | /* Parse an object - create a new root, and populate. */ |
| 429 | cJSON *cJSON_Parse(const char *value, const char **ep) |
no outgoing calls
no test coverage detected