├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── benchmark ├── dec_sm.dot ├── enc_sm.dot ├── greatest.h ├── heatshrink.c ├── heatshrink_common.h ├── heatshrink_config.h ├── heatshrink_decoder.c ├── heatshrink_decoder.h ├── heatshrink_encoder.c ├── heatshrink_encoder.h ├── test_heatshrink_dynamic.c ├── test_heatshrink_dynamic_theft.c └── test_heatshrink_static.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/README.md -------------------------------------------------------------------------------- /benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/benchmark -------------------------------------------------------------------------------- /dec_sm.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/dec_sm.dot -------------------------------------------------------------------------------- /enc_sm.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/enc_sm.dot -------------------------------------------------------------------------------- /greatest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/greatest.h -------------------------------------------------------------------------------- /heatshrink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/heatshrink.c -------------------------------------------------------------------------------- /heatshrink_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/heatshrink_common.h -------------------------------------------------------------------------------- /heatshrink_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/heatshrink_config.h -------------------------------------------------------------------------------- /heatshrink_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/heatshrink_decoder.c -------------------------------------------------------------------------------- /heatshrink_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/heatshrink_decoder.h -------------------------------------------------------------------------------- /heatshrink_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/heatshrink_encoder.c -------------------------------------------------------------------------------- /heatshrink_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/heatshrink_encoder.h -------------------------------------------------------------------------------- /test_heatshrink_dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/test_heatshrink_dynamic.c -------------------------------------------------------------------------------- /test_heatshrink_dynamic_theft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/test_heatshrink_dynamic_theft.c -------------------------------------------------------------------------------- /test_heatshrink_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atomicobject/heatshrink/HEAD/test_heatshrink_static.c --------------------------------------------------------------------------------