Simple zipper based on Huffman codes
- Consider using canonical Huffman codes
- Update Huffman code length limitations
- Reduce deflated size
- Encode Huffman code lengths instead of codes itself
- Add RLE encoding for Huffman code lengths
cd <path_you_prefer>
git clone https://github.com/Cub1tor/HuffmanZipper.git
cd HuffmanZipper
make
# or
make huffman
# You might also want to add this folder to your PATH environmental variable
export PATH="$PATH:<path_you_prefer>/HuffmanZipper/"
./huffman --help
# or, if you've added this folder to your PATH environmental variable
huffman --help