├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── lowzip.c ├── lowzip.h ├── nodejs_deflate.js ├── test_lowzip.c └── tests ├── malformed └── random_1k.deflate ├── repeat-overlap └── test.txt.deflate ├── sizes ├── size_0b.deflate ├── size_13b.deflate └── size_1b.deflate └── zeroes ├── zero_16M.deflate ├── zero_1M.deflate └── zero_256b.deflate /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/README.md -------------------------------------------------------------------------------- /lowzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/lowzip.c -------------------------------------------------------------------------------- /lowzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/lowzip.h -------------------------------------------------------------------------------- /nodejs_deflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/nodejs_deflate.js -------------------------------------------------------------------------------- /test_lowzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/test_lowzip.c -------------------------------------------------------------------------------- /tests/malformed/random_1k.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/tests/malformed/random_1k.deflate -------------------------------------------------------------------------------- /tests/repeat-overlap/test.txt.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/tests/repeat-overlap/test.txt.deflate -------------------------------------------------------------------------------- /tests/sizes/size_0b.deflate: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/sizes/size_13b.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/tests/sizes/size_13b.deflate -------------------------------------------------------------------------------- /tests/sizes/size_1b.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/tests/sizes/size_1b.deflate -------------------------------------------------------------------------------- /tests/zeroes/zero_16M.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/tests/zeroes/zero_16M.deflate -------------------------------------------------------------------------------- /tests/zeroes/zero_1M.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/tests/zeroes/zero_1M.deflate -------------------------------------------------------------------------------- /tests/zeroes/zero_256b.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svaarala/lowzip/HEAD/tests/zeroes/zero_256b.deflate --------------------------------------------------------------------------------