| 903 | } |
| 904 | |
| 905 | static void json_set_token_error(json_token_t *token, json_parse_t *json, |
| 906 | const char *errtype) |
| 907 | { |
| 908 | token->type = T_ERROR; |
| 909 | token->index = json->ptr - json->data; |
| 910 | token->value.string = errtype; |
| 911 | } |
| 912 | |
| 913 | static void json_next_string_token(json_parse_t *json, json_token_t *token) |
| 914 | { |
no outgoing calls
no test coverage detected