| 215 | */ |
| 216 | |
| 217 | static int |
| 218 | yaml_parser_set_parser_error(yaml_parser_t *parser, |
| 219 | const char *problem, yaml_mark_t problem_mark) |
| 220 | { |
| 221 | parser->error = YAML_PARSER_ERROR; |
| 222 | parser->problem = problem; |
| 223 | parser->problem_mark = problem_mark; |
| 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | static int |
| 229 | yaml_parser_set_parser_error_context(yaml_parser_t *parser, |
no outgoing calls
no test coverage detected