| 30 | } |
| 31 | |
| 32 | static const char *skip_string(const char *json) |
| 33 | { |
| 34 | CE_ENSURE(NULL != json); |
| 35 | |
| 36 | while (*++json) { |
| 37 | if (*json == '"') { |
| 38 | ++json; |
| 39 | return json; |
| 40 | } else if (*json == '\\') { |
| 41 | ++json; |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | return json; |
| 46 | } |
| 47 | |
| 48 | static const char *skip_value(const char *json) |
| 49 | { |
no outgoing calls
no test coverage detected