mz_compressBound function

  1. @Native<mz_ulong Function(mz_ulong)>(mz_ulong)>()
int mz_compressBound(
  1. int source_len
)

mz_compressBound() returns a (very) conservative upper bound on the amount of data that could be generated by calling mz_compress().

Implementation

@ffi.Native<mz_ulong Function(mz_ulong)>()
external int mz_compressBound(int source_len);