Source code for tcmpr.algorithms.lzss.compressor

"""
This module is responsible for implementing
LZSS CODING algorithm which can be used for
compression of input file
"""


[docs]def compress_lzss(input_file): pass