Module Tapak_compressions.Zstd

type dctx
type cctx
type decompress_status =
  1. | Error
  2. | Finished
  3. | Needs_more_input
type compress_status =
  1. | Error
  2. | Success
val create_dctx : unit -> dctx
val free_dctx : dctx -> unit
val decompress_stream_native : dctx -> string -> int -> int * int * string
val create_cctx : unit -> cctx
val free_cctx : cctx -> unit
val set_compression_level : cctx -> int -> unit
val compress_stream_native : cctx -> string -> int -> bool -> int * int * string * int
module Decompress : sig ... end
module Compress : sig ... end