mz_free function

  1. @Native<Void Function(Pointer<Void> ptr)>(ffi.Pointer<ffi.Void>)>()
void mz_free(
  1. Pointer<Void> p
)

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);