mz_zip_writer_set_comment method

void mz_zip_writer_set_comment(
  1. Pointer<Void> handle,
  2. Pointer<Int8> comment
)

Implementation

void mz_zip_writer_set_comment(
  ffi.Pointer<ffi.Void> handle,
  ffi.Pointer<ffi.Int8> comment,
) {
  return _mz_zip_writer_set_comment(
    handle,
    comment,
  );
}