├── .clang-format ├── .github └── workflows │ ├── check_format.yml │ ├── lua_cov.yml │ ├── lua_lint.yml │ ├── lua_test.yml │ ├── make_release_and_gh_pages.yml │ └── script │ ├── install_compressor.sh │ ├── install_lua_luarocks.sh │ ├── setenv_lua.ps1 │ ├── setenv_lua.sh │ └── upload_gh_pages.sh ├── .gitignore ├── .lua-format ├── .luacheckrc ├── .luacov ├── .pkgmeta ├── .prettierignore ├── .prettierrc.json ├── CONTRIBUTING.md ├── LICENSE.txt ├── LibDeflate.lua ├── LibDeflate.toc ├── README.md ├── changelog.md ├── dev_docs ├── README.md ├── format.md ├── ide.md └── lint.md ├── docs ├── README.md ├── benchmark.md ├── config.ld └── ldoc.css ├── examples └── example.lua ├── lib.xml ├── rockspecs └── libdeflate-1.0.2-1.rockspec ├── tests ├── LibCompress │ └── LibCompress.lua ├── Makefile ├── README.md ├── Test.lua ├── data │ ├── 3rdparty │ │ ├── 10x10y │ │ ├── 64x │ │ ├── README.txt │ │ ├── alice29.txt │ │ ├── asyoulik.txt │ │ ├── backward65536 │ │ ├── baddata1.snappy │ │ ├── baddata2.snappy │ │ ├── baddata3.snappy │ │ ├── compressed_file │ │ ├── compressed_repeated │ │ ├── cp.html │ │ ├── empty │ │ ├── fields.c │ │ ├── fireworks.jpeg │ │ ├── geo.protodata │ │ ├── grammar.lsp │ │ ├── html │ │ ├── html_x_4 │ │ ├── kennedy.xls │ │ ├── kppkn.gtb │ │ ├── lcet10.txt │ │ ├── mapsdatazrh │ │ ├── monkey │ │ ├── paper-100k.pdf │ │ ├── plrabn12.txt │ │ ├── ptt5 │ │ ├── quickfox │ │ ├── quickfox_repeated │ │ ├── random_chunks │ │ ├── random_org_10k.bin │ │ ├── sum │ │ ├── ukkonooa │ │ ├── urls.10K │ │ ├── x │ │ ├── xargs.1 │ │ ├── xyzzy │ │ └── zeros │ ├── 64k.txt │ ├── 64kminus1.txt │ ├── 64kplus1.txt │ ├── 64kplus2.txt │ ├── 64kplus3.txt │ ├── 64kplus4.txt │ ├── adler32Test.txt │ ├── adler32Test2.txt │ ├── itemStrings.txt │ ├── reconnectData.txt │ ├── reference │ │ ├── decode_6bit_weakaura.txt │ │ ├── encode_6bit_weakaura.txt │ │ ├── item_strings.txt │ │ ├── item_strings_deflate.txt │ │ ├── item_strings_deflate_with_dict.txt │ │ ├── item_strings_zlib.txt │ │ └── item_strings_zlib_with_dict.txt │ ├── smalltest.txt │ ├── smalltest_no_newline.txt │ ├── totalrp3.txt │ └── warlockWeakAuras.txt ├── dev_scripts │ ├── README.md │ ├── download_huge_data.sh │ ├── run_and_log_evaluate_performance.sh │ ├── run_code_coverage_test.sh │ ├── run_decompress_lua_error_test.sh │ ├── run_example.sh │ ├── run_huge_tests.sh │ ├── run_infinite_tests_from_random_files.sh │ ├── run_quick_tests.sh │ ├── run_test_suite.sh │ └── test_from_random_files_in_disk.py ├── dict_for_wow.txt ├── dictionary32768.txt ├── huge_data │ └── README.md ├── puff.c ├── puff.h ├── pufftest.c └── zdeflate.c └── tools ├── README.md ├── format_all.sh ├── format_c.sh ├── format_doc.sh ├── format_lua.sh ├── format_pwsh.sh ├── format_py.sh ├── format_sh.sh ├── gen_doc.sh ├── gen_packages.sh └── lint_lua_code.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/check_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.github/workflows/check_format.yml -------------------------------------------------------------------------------- /.github/workflows/lua_cov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.github/workflows/lua_cov.yml -------------------------------------------------------------------------------- /.github/workflows/lua_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.github/workflows/lua_lint.yml -------------------------------------------------------------------------------- /.github/workflows/lua_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.github/workflows/lua_test.yml -------------------------------------------------------------------------------- /.github/workflows/make_release_and_gh_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.github/workflows/make_release_and_gh_pages.yml -------------------------------------------------------------------------------- /.github/workflows/script/install_compressor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.github/workflows/script/install_compressor.sh -------------------------------------------------------------------------------- /.github/workflows/script/install_lua_luarocks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.github/workflows/script/install_lua_luarocks.sh -------------------------------------------------------------------------------- /.github/workflows/script/setenv_lua.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.github/workflows/script/setenv_lua.ps1 -------------------------------------------------------------------------------- /.github/workflows/script/setenv_lua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.github/workflows/script/setenv_lua.sh -------------------------------------------------------------------------------- /.github/workflows/script/upload_gh_pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.github/workflows/script/upload_gh_pages.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.gitignore -------------------------------------------------------------------------------- /.lua-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.lua-format -------------------------------------------------------------------------------- /.luacheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.luacheckrc -------------------------------------------------------------------------------- /.luacov: -------------------------------------------------------------------------------- 1 | include = { "LibDeflate" } 2 | -------------------------------------------------------------------------------- /.pkgmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.pkgmeta -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LibDeflate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/LibDeflate.lua -------------------------------------------------------------------------------- /LibDeflate.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/LibDeflate.toc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/changelog.md -------------------------------------------------------------------------------- /dev_docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/dev_docs/README.md -------------------------------------------------------------------------------- /dev_docs/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/dev_docs/format.md -------------------------------------------------------------------------------- /dev_docs/ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/dev_docs/ide.md -------------------------------------------------------------------------------- /dev_docs/lint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/dev_docs/lint.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/benchmark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/docs/benchmark.md -------------------------------------------------------------------------------- /docs/config.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/docs/config.ld -------------------------------------------------------------------------------- /docs/ldoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/docs/ldoc.css -------------------------------------------------------------------------------- /examples/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/examples/example.lua -------------------------------------------------------------------------------- /lib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/lib.xml -------------------------------------------------------------------------------- /rockspecs/libdeflate-1.0.2-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/rockspecs/libdeflate-1.0.2-1.rockspec -------------------------------------------------------------------------------- /tests/LibCompress/LibCompress.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/LibCompress/LibCompress.lua -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/Test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/Test.lua -------------------------------------------------------------------------------- /tests/data/3rdparty/10x10y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/10x10y -------------------------------------------------------------------------------- /tests/data/3rdparty/64x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/64x -------------------------------------------------------------------------------- /tests/data/3rdparty/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/README.txt -------------------------------------------------------------------------------- /tests/data/3rdparty/alice29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/alice29.txt -------------------------------------------------------------------------------- /tests/data/3rdparty/asyoulik.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/asyoulik.txt -------------------------------------------------------------------------------- /tests/data/3rdparty/backward65536: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/backward65536 -------------------------------------------------------------------------------- /tests/data/3rdparty/baddata1.snappy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/baddata1.snappy -------------------------------------------------------------------------------- /tests/data/3rdparty/baddata2.snappy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/baddata2.snappy -------------------------------------------------------------------------------- /tests/data/3rdparty/baddata3.snappy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/baddata3.snappy -------------------------------------------------------------------------------- /tests/data/3rdparty/compressed_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/compressed_file -------------------------------------------------------------------------------- /tests/data/3rdparty/compressed_repeated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/compressed_repeated -------------------------------------------------------------------------------- /tests/data/3rdparty/cp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/cp.html -------------------------------------------------------------------------------- /tests/data/3rdparty/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/3rdparty/fields.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/fields.c -------------------------------------------------------------------------------- /tests/data/3rdparty/fireworks.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/fireworks.jpeg -------------------------------------------------------------------------------- /tests/data/3rdparty/geo.protodata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/geo.protodata -------------------------------------------------------------------------------- /tests/data/3rdparty/grammar.lsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/grammar.lsp -------------------------------------------------------------------------------- /tests/data/3rdparty/html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/html -------------------------------------------------------------------------------- /tests/data/3rdparty/html_x_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/html_x_4 -------------------------------------------------------------------------------- /tests/data/3rdparty/kennedy.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/kennedy.xls -------------------------------------------------------------------------------- /tests/data/3rdparty/kppkn.gtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/kppkn.gtb -------------------------------------------------------------------------------- /tests/data/3rdparty/lcet10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/lcet10.txt -------------------------------------------------------------------------------- /tests/data/3rdparty/mapsdatazrh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/mapsdatazrh -------------------------------------------------------------------------------- /tests/data/3rdparty/monkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/monkey -------------------------------------------------------------------------------- /tests/data/3rdparty/paper-100k.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/paper-100k.pdf -------------------------------------------------------------------------------- /tests/data/3rdparty/plrabn12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/plrabn12.txt -------------------------------------------------------------------------------- /tests/data/3rdparty/ptt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/ptt5 -------------------------------------------------------------------------------- /tests/data/3rdparty/quickfox: -------------------------------------------------------------------------------- 1 | The quick brown fox jumps over the lazy dog -------------------------------------------------------------------------------- /tests/data/3rdparty/quickfox_repeated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/quickfox_repeated -------------------------------------------------------------------------------- /tests/data/3rdparty/random_chunks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/random_chunks -------------------------------------------------------------------------------- /tests/data/3rdparty/random_org_10k.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/random_org_10k.bin -------------------------------------------------------------------------------- /tests/data/3rdparty/sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/sum -------------------------------------------------------------------------------- /tests/data/3rdparty/ukkonooa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/ukkonooa -------------------------------------------------------------------------------- /tests/data/3rdparty/urls.10K: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/urls.10K -------------------------------------------------------------------------------- /tests/data/3rdparty/x: -------------------------------------------------------------------------------- 1 | X -------------------------------------------------------------------------------- /tests/data/3rdparty/xargs.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/xargs.1 -------------------------------------------------------------------------------- /tests/data/3rdparty/xyzzy: -------------------------------------------------------------------------------- 1 | Xyzzy -------------------------------------------------------------------------------- /tests/data/3rdparty/zeros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/3rdparty/zeros -------------------------------------------------------------------------------- /tests/data/64k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/64k.txt -------------------------------------------------------------------------------- /tests/data/64kminus1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/64kminus1.txt -------------------------------------------------------------------------------- /tests/data/64kplus1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/64kplus1.txt -------------------------------------------------------------------------------- /tests/data/64kplus2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/64kplus2.txt -------------------------------------------------------------------------------- /tests/data/64kplus3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/64kplus3.txt -------------------------------------------------------------------------------- /tests/data/64kplus4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/64kplus4.txt -------------------------------------------------------------------------------- /tests/data/adler32Test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/adler32Test.txt -------------------------------------------------------------------------------- /tests/data/adler32Test2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/adler32Test2.txt -------------------------------------------------------------------------------- /tests/data/itemStrings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/itemStrings.txt -------------------------------------------------------------------------------- /tests/data/reconnectData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/reconnectData.txt -------------------------------------------------------------------------------- /tests/data/reference/decode_6bit_weakaura.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/reference/decode_6bit_weakaura.txt -------------------------------------------------------------------------------- /tests/data/reference/encode_6bit_weakaura.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/reference/encode_6bit_weakaura.txt -------------------------------------------------------------------------------- /tests/data/reference/item_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/reference/item_strings.txt -------------------------------------------------------------------------------- /tests/data/reference/item_strings_deflate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/reference/item_strings_deflate.txt -------------------------------------------------------------------------------- /tests/data/reference/item_strings_deflate_with_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/reference/item_strings_deflate_with_dict.txt -------------------------------------------------------------------------------- /tests/data/reference/item_strings_zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/reference/item_strings_zlib.txt -------------------------------------------------------------------------------- /tests/data/reference/item_strings_zlib_with_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/reference/item_strings_zlib_with_dict.txt -------------------------------------------------------------------------------- /tests/data/smalltest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/smalltest.txt -------------------------------------------------------------------------------- /tests/data/smalltest_no_newline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/smalltest_no_newline.txt -------------------------------------------------------------------------------- /tests/data/totalrp3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/totalrp3.txt -------------------------------------------------------------------------------- /tests/data/warlockWeakAuras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/data/warlockWeakAuras.txt -------------------------------------------------------------------------------- /tests/dev_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dev_scripts/README.md -------------------------------------------------------------------------------- /tests/dev_scripts/download_huge_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dev_scripts/download_huge_data.sh -------------------------------------------------------------------------------- /tests/dev_scripts/run_and_log_evaluate_performance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dev_scripts/run_and_log_evaluate_performance.sh -------------------------------------------------------------------------------- /tests/dev_scripts/run_code_coverage_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dev_scripts/run_code_coverage_test.sh -------------------------------------------------------------------------------- /tests/dev_scripts/run_decompress_lua_error_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dev_scripts/run_decompress_lua_error_test.sh -------------------------------------------------------------------------------- /tests/dev_scripts/run_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dev_scripts/run_example.sh -------------------------------------------------------------------------------- /tests/dev_scripts/run_huge_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dev_scripts/run_huge_tests.sh -------------------------------------------------------------------------------- /tests/dev_scripts/run_infinite_tests_from_random_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dev_scripts/run_infinite_tests_from_random_files.sh -------------------------------------------------------------------------------- /tests/dev_scripts/run_quick_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dev_scripts/run_quick_tests.sh -------------------------------------------------------------------------------- /tests/dev_scripts/run_test_suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dev_scripts/run_test_suite.sh -------------------------------------------------------------------------------- /tests/dev_scripts/test_from_random_files_in_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dev_scripts/test_from_random_files_in_disk.py -------------------------------------------------------------------------------- /tests/dict_for_wow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dict_for_wow.txt -------------------------------------------------------------------------------- /tests/dictionary32768.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/dictionary32768.txt -------------------------------------------------------------------------------- /tests/huge_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/huge_data/README.md -------------------------------------------------------------------------------- /tests/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/puff.c -------------------------------------------------------------------------------- /tests/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/puff.h -------------------------------------------------------------------------------- /tests/pufftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/pufftest.c -------------------------------------------------------------------------------- /tests/zdeflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tests/zdeflate.c -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/format_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tools/format_all.sh -------------------------------------------------------------------------------- /tools/format_c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tools/format_c.sh -------------------------------------------------------------------------------- /tools/format_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tools/format_doc.sh -------------------------------------------------------------------------------- /tools/format_lua.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tools/format_lua.sh -------------------------------------------------------------------------------- /tools/format_pwsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tools/format_pwsh.sh -------------------------------------------------------------------------------- /tools/format_py.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tools/format_py.sh -------------------------------------------------------------------------------- /tools/format_sh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tools/format_sh.sh -------------------------------------------------------------------------------- /tools/gen_doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tools/gen_doc.sh -------------------------------------------------------------------------------- /tools/gen_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tools/gen_packages.sh -------------------------------------------------------------------------------- /tools/lint_lua_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SafeteeWoW/LibDeflate/HEAD/tools/lint_lua_code.sh --------------------------------------------------------------------------------