mz_stream_copy method

int mz_stream_copy(
  1. Pointer<Void> target,
  2. Pointer<Void> source,
  3. int len
)

Implementation

int mz_stream_copy(
  ffi.Pointer<ffi.Void> target,
  ffi.Pointer<ffi.Void> source,
  int len,
) {
  return _mz_stream_copy(
    target,
    source,
    len,
  );
}