#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlParserErrorV(
ctx: *mut c_void,
msg: *const c_char,
ap: *mut VaListTag,
) -> c_intExpand description
Variadic receiver for the xmlParserError shim: formats msg with the
caller’s varargs and emits "error: " + formatted text through the
generic channel (upstream error.c xmlVFormatLegacyError).
§Safety
msgmust be a valid NUL-terminated printf format string,apa valid va_list matching the format,ctxmay be NULL.