├── LICENSE ├── Makefile ├── README ├── VERSION ├── src ├── slz.c ├── slz.h ├── zdec.c └── zenc.c ├── tests ├── daniels.html ├── index.html └── noncomp.bin └── tools ├── dump_len.c ├── mkhuff.sh └── mklen.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/README -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /src/slz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/src/slz.c -------------------------------------------------------------------------------- /src/slz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/src/slz.h -------------------------------------------------------------------------------- /src/zdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/src/zdec.c -------------------------------------------------------------------------------- /src/zenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/src/zenc.c -------------------------------------------------------------------------------- /tests/daniels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/tests/daniels.html -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/noncomp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/tests/noncomp.bin -------------------------------------------------------------------------------- /tools/dump_len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/tools/dump_len.c -------------------------------------------------------------------------------- /tools/mkhuff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/tools/mkhuff.sh -------------------------------------------------------------------------------- /tools/mklen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haproxy-unofficial-obsolete-mirrors/libslz/HEAD/tools/mklen.sh --------------------------------------------------------------------------------