pub type warningSAXFunc = unsafe extern "C" fn(ctx: *mut c_void, msg: *const c_char);Expand description
Callback for warnings (printf-style, variadic at C call site).
§UPSTREAM-PARITY
The ... is implicit in C; Rust type cannot express variadic extern āCā
on stable. The function pointer ABI is identical ā C callers pass variadic
arguments and the callee uses va_list internally.