mz_zip_reader_locate_entry method

int mz_zip_reader_locate_entry(
  1. Pointer<Void> handle,
  2. Pointer<Int8> filename,
  3. int ignore_case
)

Implementation

int mz_zip_reader_locate_entry(
  ffi.Pointer<ffi.Void> handle,
  ffi.Pointer<ffi.Int8> filename,
  int ignore_case,
) {
  return _mz_zip_reader_locate_entry(
    handle,
    filename,
    ignore_case,
  );
}