#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlMemDisplay(fp: *mut c_void)Expand description
Display memory allocation information to a file.
§UPSTREAM-PARITY
void xmlMemDisplay(FILE *fp);Prints debug memory information. With the default allocator, this prints a summary message. Custom allocator hooks may provide more detailed output.
§SAFETY
fpmust be a valid FILE* pointer or NULL (in which case stderr is used)