ZSTD_sizeof_CCtx method

int ZSTD_sizeof_CCtx(
  1. Pointer<ZSTD_CCtx> cctx
)

! ZSTD_sizeof_*() : Requires v1.4.0+ These functions give the current memory usage of selected object. Note that object memory usage can evolve (increase or decrease) over time.

Implementation

int ZSTD_sizeof_CCtx(
  ffi.Pointer<ZSTD_CCtx> cctx,
) {
  return _ZSTD_sizeof_CCtx(
    cctx,
  );
}