MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / yaml_parser_set_composer_error_context

Function yaml_parser_set_composer_error_context

external/libyaml/src/loader.c:153–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

151 */
152
153static int
154yaml_parser_set_composer_error_context(yaml_parser_t *parser,
155 const char *context, yaml_mark_t context_mark,
156 const char *problem, yaml_mark_t problem_mark)
157{
158 parser->error = YAML_COMPOSER_ERROR;
159 parser->context = context;
160 parser->context_mark = context_mark;
161 parser->problem = problem;
162 parser->problem_mark = problem_mark;
163
164 return 0;
165}
166
167/*
168 * Delete the stack of aliases.

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected