| 878 | } |
| 879 | |
| 880 | static void json_set_token_error(json_token_t *token, json_parse_t *json, |
| 881 | const char *errtype) |
| 882 | { |
| 883 | token->type = T_ERROR; |
| 884 | token->index = json->ptr - json->data; |
| 885 | token->value.string = errtype; |
| 886 | } |
| 887 | |
| 888 | static void json_next_string_token(json_parse_t *json, json_token_t *token) |
| 889 | { |
no outgoing calls
no test coverage detected