Module Impl.Decompress_inflate

module Stdlib_buffer = Stdlib.Buffer
module Buffer = Decompress_buffer
module Window = Decompress_window
module Safe = Decompress_safe
module Tables = Decompress_tables
module OS = Decompress_os
module Tree = Decompress_tree
module Option = Decompress_option
val pf : Stdlib.Format.formatter -> ('aStdlib.Format.formatter, unit) Stdlib.format -> 'a
val invalid_arg : ('a, unit, string, 'b) Stdlib.format4 -> 'a
module type INFLATE = sig ... end

non-blocking and functionnal implementation of Inflate

module type S = sig ... end
module Convenience : functor (X : S) -> sig ... end
type error_rfc1951 =
| Invalid_kind_of_block
| Invalid_complement_of_length
| Invalid_dictionary
| Invalid_distance_code
| Invalid_distance of {
distance : int;
max : int;
}
module RFC1951 : sig ... end
type error_z =
| RFC1951 of RFC1951.error
| Invalid_header
| Invalid_checksum of {
have : Optint.t;
expect : Optint.t;
}
module Zlib : sig ... end
type error_g =
| RFC1951 of RFC1951.error
| Invalid_header
| Invalid_header_checksum of {
have : Optint.t;
expect : Optint.t;
}
| Invalid_checksum of {
have : Optint.t;
expect : Optint.t;
}
| Invalid_size of {
have : Optint.t;
expect : Optint.t;
}
module Gzip : sig ... end