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