Utility to jump whitespace and cr/lf */
| 873 | |
| 874 | /* Utility to jump whitespace and cr/lf */ |
| 875 | static const unsigned char *skip(const unsigned char *in) |
| 876 | { |
| 877 | while (in && *in && (*in <= 32)) |
| 878 | { |
| 879 | in++; |
| 880 | } |
| 881 | |
| 882 | return in; |
| 883 | } |
| 884 | |
| 885 | /* Parse an object - create a new root, and populate. */ |
| 886 | cJSON *cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cjbool require_null_terminated) |
no outgoing calls
no test coverage detected