├── .gitignore ├── Makefile ├── README.md ├── huffman.c └── huffman.h /.gitignore: -------------------------------------------------------------------------------- 1 | huffman_test 2 | *.o 3 | *.dSYM 4 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamierymenko/huffandpuff/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamierymenko/huffandpuff/HEAD/README.md -------------------------------------------------------------------------------- /huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamierymenko/huffandpuff/HEAD/huffman.c -------------------------------------------------------------------------------- /huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamierymenko/huffandpuff/HEAD/huffman.h --------------------------------------------------------------------------------