this repo has no description
at main 418 B view raw
1type order = LSB | MSB 2type error = Invalid_code of int | Unexpected_eof | Buffer_overflow 3 4val error_to_string : error -> string 5val decompress_to_buffer : src:Cstruct.t -> dst:Cstruct.t -> (int, error) result 6val decompress_cstruct : Cstruct.t -> (Cstruct.t, error) result 7 8val decompress : 9 ?order:order -> ?lit_width:int -> string -> (string, error) result 10 11val decompress_lsb8 : string -> (string, error) result