mz_free function
mz_free() internally uses the MZ_FREE() macro (which by default calls free() unless you've modified the MZ_MALLOC macro) to release a block allocated from the heap.
Implementation
@ffi.Native<ffi.Void Function(ffi.Pointer<ffi.Void>)>()
external void mz_free(ffi.Pointer<ffi.Void> p);