mz_crypt_crc32_update method

int mz_crypt_crc32_update(
  1. int value,
  2. Pointer<Uint8> buf,
  3. int size
)

/

Implementation

int mz_crypt_crc32_update(
  int value,
  ffi.Pointer<ffi.Uint8> buf,
  int size,
) {
  return _mz_crypt_crc32_update(
    value,
    buf,
    size,
  );
}