1type order = LSB | MSB 2type error = Invalid_code of int | Unexpected_eof | Buffer_overflow 3 4val error_to_string : error -> string 5 6val decompress : 7 ?order:order -> ?lit_width:int -> string -> (string, error) result 8 9val decompress_lsb8 : string -> (string, error) result