#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlXPathDebugDumpCompExpr(
output: *mut c_void,
comp: *mut c_void,
depth: c_int,
)Expand description
void xmlXPathDebugDumpCompExpr(FILE *output, xmlXPathCompExpr *comp, int depth).
The candidate’s compiled expressions are opaque registry handles; the dump prints the original expression text. NULL handles print nothing (matching upstream’s early return).
§SAFETY
outputmust be a valid FILE* or NULL;compa compiled expression or NULL.