├── .github └── workflows │ ├── linux-p7zip-CI.yml │ ├── macos-p7zip-CI.yml │ ├── release_linux.yml │ └── release_mac.yml ├── .gitignore ├── Asm ├── arm │ └── 7zCrcOpt.asm ├── arm64 │ ├── 7zAsm.S │ └── LzmaDecOpt.S └── x86 │ ├── 7zAsm.asm │ ├── 7zCrcOpt.asm │ ├── AesOpt.asm │ ├── LzFindOpt.asm │ ├── LzmaDecOpt.asm │ ├── Sha1Opt.asm │ ├── Sha256Opt.asm │ └── XzCrc64Opt.asm ├── C ├── 7z.h ├── 7zAlloc.c ├── 7zAlloc.h ├── 7zArcIn.c ├── 7zBuf.c ├── 7zBuf.h ├── 7zBuf2.c ├── 7zCrc.c ├── 7zCrc.h ├── 7zCrcOpt.c ├── 7zDec.c ├── 7zFile.c ├── 7zFile.h ├── 7zStream.c ├── 7zTypes.h ├── 7zVersion.h ├── 7zVersion.rc ├── 7zip_gcc_c.mak ├── Aes.c ├── Aes.h ├── AesOpt.c ├── Alloc.c ├── Alloc.h ├── Bcj2.c ├── Bcj2.h ├── Bcj2Enc.c ├── Blake2.h ├── Blake2s.c ├── Bra.c ├── Bra.h ├── Bra86.c ├── BraIA64.c ├── BwtSort.c ├── BwtSort.h ├── Compiler.h ├── CpuArch.c ├── CpuArch.h ├── Delta.c ├── Delta.h ├── DllSecur.c ├── DllSecur.h ├── HuffEnc.c ├── HuffEnc.h ├── LzFind.c ├── LzFind.h ├── LzFindMt.c ├── LzFindMt.h ├── LzFindOpt.c ├── LzHash.h ├── Lzma2Dec.c ├── Lzma2Dec.h ├── Lzma2DecMt.c ├── Lzma2DecMt.h ├── Lzma2Enc.c ├── Lzma2Enc.h ├── Lzma86.h ├── Lzma86Dec.c ├── Lzma86Enc.c ├── LzmaDec.c ├── LzmaDec.h ├── LzmaEnc.c ├── LzmaEnc.h ├── LzmaLib.c ├── LzmaLib.h ├── MtCoder.c ├── MtCoder.h ├── MtDec.c ├── MtDec.h ├── Ppmd.h ├── Ppmd7.c ├── Ppmd7.h ├── Ppmd7Dec.c ├── Ppmd7Enc.c ├── Ppmd7aDec.c ├── Ppmd8.c ├── Ppmd8.h ├── Ppmd8Dec.c ├── Ppmd8Enc.c ├── Precomp.h ├── RotateDefs.h ├── Sha1.c ├── Sha1.h ├── Sha1Opt.c ├── Sha256.c ├── Sha256.h ├── Sha256Opt.c ├── Sort.c ├── Sort.h ├── Threads.c ├── Threads.h ├── Util │ ├── 7z │ │ ├── 7z.dsp │ │ ├── 7z.dsw │ │ ├── 7zMain.c │ │ ├── Precomp.c │ │ ├── Precomp.h │ │ ├── makefile │ │ └── makefile.gcc │ ├── 7zipInstall │ │ ├── 7zip.ico │ │ ├── 7zipInstall.c │ │ ├── 7zipInstall.dsp │ │ ├── 7zipInstall.dsw │ │ ├── 7zipInstall.manifest │ │ ├── Precomp.c │ │ ├── Precomp.h │ │ ├── makefile │ │ ├── resource.h │ │ └── resource.rc │ ├── 7zipUninstall │ │ ├── 7zipUninstall.c │ │ ├── 7zipUninstall.dsp │ │ ├── 7zipUninstall.dsw │ │ ├── 7zipUninstall.ico │ │ ├── 7zipUninstall.manifest │ │ ├── Precomp.c │ │ ├── Precomp.h │ │ ├── makefile │ │ ├── resource.h │ │ └── resource.rc │ ├── Lzma │ │ ├── LzmaUtil.c │ │ ├── LzmaUtil.dsp │ │ ├── LzmaUtil.dsw │ │ ├── makefile │ │ └── makefile.gcc │ ├── LzmaLib │ │ ├── LzmaLib.def │ │ ├── LzmaLib.dsp │ │ ├── LzmaLib.dsw │ │ ├── LzmaLibExports.c │ │ ├── makefile │ │ └── resource.rc │ └── SfxSetup │ │ ├── Precomp.c │ │ ├── Precomp.h │ │ ├── SfxSetup.c │ │ ├── SfxSetup.dsp │ │ ├── SfxSetup.dsw │ │ ├── makefile │ │ ├── makefile_con │ │ ├── resource.rc │ │ └── setup.ico ├── Xz.c ├── Xz.h ├── XzCrc64.c ├── XzCrc64.h ├── XzCrc64Opt.c ├── XzDec.c ├── XzEnc.c ├── XzEnc.h ├── XzIn.c ├── brotli │ ├── BUILD │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── MANIFEST.in │ ├── Makefile │ ├── Makefile.am │ ├── README │ ├── README.md │ ├── WORKSPACE │ ├── bootstrap │ ├── c │ │ ├── common │ │ │ ├── constants.c │ │ │ ├── constants.h │ │ │ ├── context.c │ │ │ ├── context.h │ │ │ ├── dictionary.c │ │ │ ├── dictionary.h │ │ │ ├── platform.c │ │ │ ├── platform.h │ │ │ ├── transform.c │ │ │ ├── transform.h │ │ │ └── version.h │ │ ├── dec │ │ │ ├── bit_reader.c │ │ │ ├── bit_reader.h │ │ │ ├── decode.c │ │ │ ├── huffman.c │ │ │ ├── huffman.h │ │ │ ├── prefix.h │ │ │ ├── state.c │ │ │ └── state.h │ │ ├── enc │ │ │ ├── backward_references.c │ │ │ ├── backward_references.h │ │ │ ├── backward_references_hq.c │ │ │ ├── backward_references_hq.h │ │ │ ├── backward_references_inc.h │ │ │ ├── bit_cost.c │ │ │ ├── bit_cost.h │ │ │ ├── bit_cost_inc.h │ │ │ ├── block_encoder_inc.h │ │ │ ├── block_splitter.c │ │ │ ├── block_splitter.h │ │ │ ├── block_splitter_inc.h │ │ │ ├── brotli_bit_stream.c │ │ │ ├── brotli_bit_stream.h │ │ │ ├── cluster.c │ │ │ ├── cluster.h │ │ │ ├── cluster_inc.h │ │ │ ├── command.c │ │ │ ├── command.h │ │ │ ├── compress_fragment.c │ │ │ ├── compress_fragment.h │ │ │ ├── compress_fragment_two_pass.c │ │ │ ├── compress_fragment_two_pass.h │ │ │ ├── dictionary_hash.c │ │ │ ├── dictionary_hash.h │ │ │ ├── encode.c │ │ │ ├── encoder_dict.c │ │ │ ├── encoder_dict.h │ │ │ ├── entropy_encode.c │ │ │ ├── entropy_encode.h │ │ │ ├── entropy_encode_static.h │ │ │ ├── fast_log.c │ │ │ ├── fast_log.h │ │ │ ├── find_match_length.h │ │ │ ├── hash.h │ │ │ ├── hash_composite_inc.h │ │ │ ├── hash_forgetful_chain_inc.h │ │ │ ├── hash_longest_match64_inc.h │ │ │ ├── hash_longest_match_inc.h │ │ │ ├── hash_longest_match_quickly_inc.h │ │ │ ├── hash_rolling_inc.h │ │ │ ├── hash_to_binary_tree_inc.h │ │ │ ├── histogram.c │ │ │ ├── histogram.h │ │ │ ├── histogram_inc.h │ │ │ ├── literal_cost.c │ │ │ ├── literal_cost.h │ │ │ ├── memory.c │ │ │ ├── memory.h │ │ │ ├── metablock.c │ │ │ ├── metablock.h │ │ │ ├── metablock_inc.h │ │ │ ├── params.h │ │ │ ├── prefix.h │ │ │ ├── quality.h │ │ │ ├── ringbuffer.h │ │ │ ├── static_dict.c │ │ │ ├── static_dict.h │ │ │ ├── static_dict_lut.h │ │ │ ├── utf8_util.c │ │ │ ├── utf8_util.h │ │ │ └── write_bits.h │ │ ├── include │ │ │ └── brotli │ │ │ │ ├── decode.h │ │ │ │ ├── encode.h │ │ │ │ ├── port.h │ │ │ │ └── types.h │ │ └── tools │ │ │ ├── brotli.c │ │ │ └── brotli.md │ ├── compiler_config_setting.bzl │ ├── configure │ ├── configure-cmake │ ├── configure.ac │ ├── docs │ │ ├── brotli.1 │ │ ├── constants.h.3 │ │ ├── decode.h.3 │ │ ├── encode.h.3 │ │ └── types.h.3 │ ├── premake5.lua │ ├── python │ │ ├── Makefile │ │ ├── README.md │ │ ├── _brotli.cc │ │ ├── bro.py │ │ ├── brotli.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── _test_utils.py │ │ │ ├── bro_test.py │ │ │ ├── compress_test.py │ │ │ ├── compressor_test.py │ │ │ ├── decompress_test.py │ │ │ └── decompressor_test.py │ ├── scripts │ │ ├── libbrotlicommon.pc.in │ │ ├── libbrotlidec.pc.in │ │ ├── libbrotlienc.pc.in │ │ └── sources.lst │ ├── setup.cfg │ ├── setup.py │ └── tests │ │ ├── Makefile │ │ ├── compatibility_test.sh │ │ ├── roundtrip_test.sh │ │ ├── run-compatibility-test.cmake │ │ ├── run-roundtrip-test.cmake │ │ └── testdata │ │ ├── empty │ │ ├── empty.compressed │ │ ├── ukkonooa │ │ └── ukkonooa.compressed ├── fast-lzma2 │ ├── COPYING │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── atomic.h │ ├── bench │ │ ├── Makefile │ │ ├── bench.c │ │ └── bench.vcxproj │ ├── build │ │ └── VS │ │ │ └── fast-lzma2.sln │ ├── compiler.h │ ├── count.h │ ├── data_block.h │ ├── dict_buffer.c │ ├── dict_buffer.h │ ├── dll │ │ ├── fast-lzma2.vcxproj │ │ └── fast-lzma2.vcxproj.filters │ ├── doc │ │ └── images │ │ │ └── bench_mt2.png │ ├── fast-lzma2.h │ ├── fastpos_table.h │ ├── fl2_common.c │ ├── fl2_compress.c │ ├── fl2_compress_internal.h │ ├── fl2_decompress.c │ ├── fl2_errors.h │ ├── fl2_internal.h │ ├── fl2_pool.c │ ├── fl2_pool.h │ ├── fl2_threading.c │ ├── fl2_threading.h │ ├── fuzzer │ │ ├── Makefile │ │ ├── datagen.c │ │ ├── datagen.h │ │ ├── fuzzer.c │ │ └── fuzzer.vcxproj │ ├── lzma2_dec.c │ ├── lzma2_dec.h │ ├── lzma2_enc.c │ ├── lzma2_enc.h │ ├── lzma_dec_x86_64.S │ ├── lzma_dec_x86_64.asm │ ├── mem.h │ ├── platform.h │ ├── radix_bitpack.c │ ├── radix_engine.h │ ├── radix_get.h │ ├── radix_internal.h │ ├── radix_mf.c │ ├── radix_mf.h │ ├── radix_struct.c │ ├── range_enc.c │ ├── range_enc.h │ ├── test │ │ ├── Makefile │ │ ├── file_test.c │ │ └── file_test.vcxproj │ ├── util.c │ ├── util.h │ ├── xxhash.c │ └── xxhash.h ├── hashes │ ├── README.md │ ├── blake3.c │ ├── blake3.h │ ├── hash.h │ ├── md2.c │ ├── md2.h │ ├── md4.c │ ├── md4.h │ ├── md5.c │ ├── md5.h │ ├── sha.h │ └── sha512.c ├── lizard │ ├── .travis.yml │ ├── LICENSE │ ├── Makefile │ ├── NEWS │ ├── README.md │ ├── appveyor.yml │ ├── cmake_unofficial │ │ └── CMakeLists.txt │ ├── contrib │ │ └── djgpp │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ └── README.MD │ ├── doc │ │ ├── lizard_Block_format.md │ │ └── lizard_Frame_format.md │ ├── examples │ │ ├── HCStreaming_ringBuffer.c │ │ ├── Makefile │ │ ├── README.md │ │ ├── blockStreaming_doubleBuffer.c │ │ ├── blockStreaming_doubleBuffer.md │ │ ├── blockStreaming_lineByLine.c │ │ ├── blockStreaming_lineByLine.md │ │ ├── blockStreaming_ringBuffer.c │ │ ├── compress_functions.c │ │ ├── frameCompress.c │ │ ├── printVersion.c │ │ ├── simple_buffer.c │ │ └── streaming_api_basics.md │ ├── lib │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── dll │ │ │ └── liblizard.def │ │ ├── entropy │ │ │ ├── README.md │ │ │ ├── bitstream.h │ │ │ ├── entropy_common.c │ │ │ ├── error_private.h │ │ │ ├── error_public.h │ │ │ ├── fse.h │ │ │ ├── fse_compress.c │ │ │ ├── fse_decompress.c │ │ │ ├── huf.h │ │ │ ├── huf_compress.c │ │ │ ├── huf_decompress.c │ │ │ └── mem.h │ │ ├── liblizard.pc.in │ │ ├── lizard_common.h │ │ ├── lizard_compress.c │ │ ├── lizard_compress.h │ │ ├── lizard_compress_liz.h │ │ ├── lizard_compress_lz4.h │ │ ├── lizard_decompress.c │ │ ├── lizard_decompress.h │ │ ├── lizard_decompress_liz.h │ │ ├── lizard_decompress_lz4.h │ │ ├── lizard_frame.c │ │ ├── lizard_frame.h │ │ ├── lizard_frame_static.h │ │ ├── lizard_parser_fast.h │ │ ├── lizard_parser_fastbig.h │ │ ├── lizard_parser_fastsmall.h │ │ ├── lizard_parser_hashchain.h │ │ ├── lizard_parser_lowestprice.h │ │ ├── lizard_parser_nochain.h │ │ ├── lizard_parser_optimal.h │ │ ├── lizard_parser_pricefast.h │ │ └── xxhash │ │ │ ├── xxhash.c │ │ │ └── xxhash.h │ ├── programs │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README.md │ │ ├── bench.c │ │ ├── bench.h │ │ ├── datagen.c │ │ ├── datagen.h │ │ ├── lizard.1 │ │ ├── lizardcli.c │ │ ├── lizardio.c │ │ ├── lizardio.h │ │ ├── platform.h │ │ └── util.h │ ├── tests │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README.md │ │ ├── datagencli.c │ │ ├── frametest.c │ │ ├── fullbench.c │ │ └── fuzzer.c │ └── visual │ │ ├── README.md │ │ └── VS2010 │ │ ├── datagen │ │ └── datagen.vcxproj │ │ ├── frametest │ │ └── frametest.vcxproj │ │ ├── fullbench │ │ └── fullbench.vcxproj │ │ ├── fuzzer │ │ └── fuzzer.vcxproj │ │ ├── liblizard-dll │ │ ├── liblizard-dll.rc │ │ └── liblizard-dll.vcxproj │ │ ├── liblizard │ │ └── liblizard.vcxproj │ │ ├── lizard.sln │ │ └── lizard │ │ ├── lizard.rc │ │ └── lizard.vcxproj ├── lz4 │ ├── .travis.yml │ ├── INSTALL │ ├── LICENSE │ ├── Makefile │ ├── Makefile.inc │ ├── NEWS │ ├── README.md │ ├── appveyor.yml │ ├── build │ │ ├── README.md │ │ ├── VS2010 │ │ │ ├── datagen │ │ │ │ └── datagen.vcxproj │ │ │ ├── frametest │ │ │ │ └── frametest.vcxproj │ │ │ ├── fullbench-dll │ │ │ │ └── fullbench-dll.vcxproj │ │ │ ├── fullbench │ │ │ │ └── fullbench.vcxproj │ │ │ ├── fuzzer │ │ │ │ └── fuzzer.vcxproj │ │ │ ├── liblz4-dll │ │ │ │ ├── liblz4-dll.rc │ │ │ │ └── liblz4-dll.vcxproj │ │ │ ├── liblz4 │ │ │ │ └── liblz4.vcxproj │ │ │ ├── lz4.sln │ │ │ └── lz4 │ │ │ │ ├── lz4.rc │ │ │ │ └── lz4.vcxproj │ │ ├── VS2017 │ │ │ ├── datagen │ │ │ │ └── datagen.vcxproj │ │ │ ├── frametest │ │ │ │ └── frametest.vcxproj │ │ │ ├── fullbench-dll │ │ │ │ └── fullbench-dll.vcxproj │ │ │ ├── fullbench │ │ │ │ └── fullbench.vcxproj │ │ │ ├── fuzzer │ │ │ │ └── fuzzer.vcxproj │ │ │ ├── liblz4-dll │ │ │ │ ├── liblz4-dll.rc │ │ │ │ └── liblz4-dll.vcxproj │ │ │ ├── liblz4 │ │ │ │ └── liblz4.vcxproj │ │ │ ├── lz4.sln │ │ │ └── lz4 │ │ │ │ ├── lz4.rc │ │ │ │ └── lz4.vcxproj │ │ ├── VS2022 │ │ │ ├── datagen │ │ │ │ └── datagen.vcxproj │ │ │ ├── frametest │ │ │ │ └── frametest.vcxproj │ │ │ ├── fullbench-dll │ │ │ │ └── fullbench-dll.vcxproj │ │ │ ├── fullbench │ │ │ │ └── fullbench.vcxproj │ │ │ ├── fuzzer │ │ │ │ └── fuzzer.vcxproj │ │ │ ├── liblz4-dll │ │ │ │ ├── liblz4-dll.rc │ │ │ │ └── liblz4-dll.vcxproj │ │ │ ├── liblz4 │ │ │ │ └── liblz4.vcxproj │ │ │ └── lz4.sln │ │ └── cmake │ │ │ ├── CMakeLists.txt │ │ │ ├── lz4Config.cmake.in │ │ │ └── lz4api.map │ ├── contrib │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── dirs │ │ │ ├── docs │ │ │ ├── liblz4-dev.install │ │ │ ├── liblz4.install │ │ │ └── rules │ │ ├── djgpp │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ └── README.MD │ │ ├── gen_manual │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── gen-lz4-manual.sh │ │ │ └── gen_manual.cpp │ │ ├── meson │ │ │ ├── GetLz4LibraryVersion.py │ │ │ ├── README.md │ │ │ ├── meson.build │ │ │ ├── meson │ │ │ │ ├── contrib │ │ │ │ │ ├── gen_manual │ │ │ │ │ │ └── meson.build │ │ │ │ │ └── meson.build │ │ │ │ ├── examples │ │ │ │ │ └── meson.build │ │ │ │ ├── lib │ │ │ │ │ └── meson.build │ │ │ │ ├── meson.build │ │ │ │ ├── ossfuzz │ │ │ │ │ └── meson.build │ │ │ │ ├── programs │ │ │ │ │ └── meson.build │ │ │ │ └── tests │ │ │ │ │ └── meson.build │ │ │ └── meson_options.txt │ │ └── snap │ │ │ ├── README.md │ │ │ └── snapcraft.yaml │ ├── doc │ │ ├── lz4_Block_format.md │ │ ├── lz4_Frame_format.md │ │ ├── lz4_manual.html │ │ └── lz4frame_manual.html │ ├── examples │ │ ├── COPYING │ │ ├── HCStreaming_ringBuffer.c │ │ ├── Makefile │ │ ├── README.md │ │ ├── blockStreaming_doubleBuffer.c │ │ ├── blockStreaming_doubleBuffer.md │ │ ├── blockStreaming_lineByLine.c │ │ ├── blockStreaming_lineByLine.md │ │ ├── blockStreaming_ringBuffer.c │ │ ├── compress_functions.c │ │ ├── dictionaryRandomAccess.c │ │ ├── dictionaryRandomAccess.md │ │ ├── fileCompress.c │ │ ├── frameCompress.c │ │ ├── printVersion.c │ │ ├── simple_buffer.c │ │ └── streaming_api_basics.md │ ├── lib │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── dll │ │ │ └── example │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── fullbench-dll.sln │ │ │ │ └── fullbench-dll.vcxproj │ │ ├── liblz4-dll.rc.in │ │ ├── liblz4.pc.in │ │ ├── lz4.c │ │ ├── lz4.h │ │ ├── lz4file.c │ │ ├── lz4file.h │ │ ├── lz4frame.c │ │ ├── lz4frame.h │ │ ├── lz4frame_static.h │ │ ├── lz4hc.c │ │ ├── lz4hc.h │ │ ├── xxhash.c │ │ └── xxhash.h │ ├── ossfuzz │ │ ├── Makefile │ │ ├── compress_frame_fuzzer.c │ │ ├── compress_fuzzer.c │ │ ├── compress_hc_fuzzer.c │ │ ├── decompress_frame_fuzzer.c │ │ ├── decompress_fuzzer.c │ │ ├── fuzz.h │ │ ├── fuzz_data_producer.c │ │ ├── fuzz_data_producer.h │ │ ├── fuzz_helpers.h │ │ ├── lz4_helpers.c │ │ ├── lz4_helpers.h │ │ ├── ossfuzz.sh │ │ ├── round_trip_frame_fuzzer.c │ │ ├── round_trip_frame_uncompressed_fuzzer.c │ │ ├── round_trip_fuzzer.c │ │ ├── round_trip_hc_fuzzer.c │ │ ├── round_trip_stream_fuzzer.c │ │ ├── standaloneengine.c │ │ └── travisoss.sh │ ├── programs │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README.md │ │ ├── bench.c │ │ ├── bench.h │ │ ├── datagen.c │ │ ├── datagen.h │ │ ├── lz4-exe.rc.in │ │ ├── lz4.1 │ │ ├── lz4.1.md │ │ ├── lz4cli.c │ │ ├── lz4io.c │ │ ├── lz4io.h │ │ ├── platform.h │ │ └── util.h │ └── tests │ │ ├── COPYING │ │ ├── Makefile │ │ ├── README.md │ │ ├── abiTest.c │ │ ├── checkFrame.c │ │ ├── checkTag.c │ │ ├── check_liblz4_version.sh │ │ ├── datagencli.c │ │ ├── decompress-partial-usingDict.c │ │ ├── decompress-partial.c │ │ ├── frametest.c │ │ ├── freestanding.c │ │ ├── fullbench.c │ │ ├── fuzzer.c │ │ ├── goldenSamples │ │ └── skip.bin │ │ ├── roundTripTest.c │ │ ├── test-lz4-abi.py │ │ ├── test-lz4-basic.sh │ │ ├── test-lz4-contentSize.sh │ │ ├── test-lz4-dict.sh │ │ ├── test-lz4-fast-hugefile.sh │ │ ├── test-lz4-frame-concatenation.sh │ │ ├── test-lz4-list.py │ │ ├── test-lz4-multiple-legacy.sh │ │ ├── test-lz4-multiple.sh │ │ ├── test-lz4-opt-parser.sh │ │ ├── test-lz4-skippable.sh │ │ ├── test-lz4-sparse.sh │ │ ├── test-lz4-speed.py │ │ ├── test-lz4-testmode.sh │ │ ├── test-lz4-versions.py │ │ ├── test-lz4hc-hugefile.sh │ │ ├── test_custom_block_sizes.sh │ │ ├── test_install.sh │ │ └── unicode_lint.sh ├── lz5 │ ├── .travis.yml │ ├── Makefile │ ├── NEWS │ ├── README.md │ ├── appveyor.yml │ ├── lib │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── liblz5.pc.in │ │ ├── lz5.c │ │ ├── lz5.h │ │ ├── lz5common.h │ │ ├── lz5frame.c │ │ ├── lz5frame.h │ │ ├── lz5frame_static.h │ │ ├── lz5hc.c │ │ ├── lz5hc.h │ │ ├── mem.h │ │ ├── xxhash.c │ │ └── xxhash.h │ ├── lz5_Block_format.md │ ├── lz5_Frame_format.md │ ├── programs │ │ ├── COPYING │ │ ├── Makefile │ │ ├── bench.c │ │ ├── bench.h │ │ ├── datagen.c │ │ ├── datagen.h │ │ ├── datagencli.c │ │ ├── frametest.c │ │ ├── fullbench.c │ │ ├── lz5.1 │ │ ├── lz5cli.c │ │ ├── lz5io.c │ │ └── lz5io.h │ └── projects │ │ └── VS2010 │ │ ├── datagen │ │ └── datagen.vcxproj │ │ ├── frametest │ │ └── frametest.vcxproj │ │ ├── fullbench │ │ └── fullbench.vcxproj │ │ ├── lz5.sln │ │ └── lz5 │ │ └── lz5.vcxproj ├── lzham_codec │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── example1 │ │ ├── example1.c │ │ └── example1.vcxproj │ ├── example2 │ │ ├── example2.c │ │ └── example2.vcxproj │ ├── example3 │ │ ├── example3.cpp │ │ └── example3.vcxproj │ ├── example4 │ │ ├── cfile_stream.cpp │ │ ├── cfile_stream.h │ │ ├── comp_stream.cpp │ │ ├── comp_stream.h │ │ ├── data_stream.cpp │ │ ├── data_stream.h │ │ ├── data_stream_serializer.h │ │ ├── dynamic_stream.cpp │ │ ├── dynamic_stream.h │ │ ├── example4.cpp │ │ ├── example4.vcxproj │ │ ├── mem_stream.cpp │ │ ├── mem_stream.h │ │ └── stream_common.h │ ├── include │ │ ├── lzham.h │ │ ├── lzham_dynamic_lib.h │ │ ├── lzham_exports.inc │ │ ├── lzham_static_lib.h │ │ └── zlib.h │ ├── lzham.sln │ ├── lzhamcomp │ │ ├── CMakeLists.txt │ │ ├── lzham_comp.h │ │ ├── lzham_lzbase.cpp │ │ ├── lzham_lzbase.h │ │ ├── lzham_lzcomp.cpp │ │ ├── lzham_lzcomp_internal.cpp │ │ ├── lzham_lzcomp_internal.h │ │ ├── lzham_lzcomp_state.cpp │ │ ├── lzham_match_accel.cpp │ │ ├── lzham_match_accel.h │ │ ├── lzham_null_threading.h │ │ ├── lzham_pthreads_threading.cpp │ │ ├── lzham_pthreads_threading.h │ │ ├── lzham_threading.h │ │ ├── lzham_win32_threading.cpp │ │ ├── lzham_win32_threading.h │ │ └── lzhamcomp.vcxproj │ ├── lzhamdecomp │ │ ├── CMakeLists.txt │ │ ├── lzham_assert.cpp │ │ ├── lzham_assert.h │ │ ├── lzham_checksum.cpp │ │ ├── lzham_checksum.h │ │ ├── lzham_config.h │ │ ├── lzham_core.h │ │ ├── lzham_decomp.h │ │ ├── lzham_helpers.h │ │ ├── lzham_huffman_codes.cpp │ │ ├── lzham_huffman_codes.h │ │ ├── lzham_lzdecomp.cpp │ │ ├── lzham_lzdecompbase.cpp │ │ ├── lzham_lzdecompbase.h │ │ ├── lzham_math.h │ │ ├── lzham_mem.cpp │ │ ├── lzham_mem.h │ │ ├── lzham_platform.cpp │ │ ├── lzham_platform.h │ │ ├── lzham_prefix_coding.cpp │ │ ├── lzham_prefix_coding.h │ │ ├── lzham_symbol_codec.cpp │ │ ├── lzham_symbol_codec.h │ │ ├── lzham_timer.cpp │ │ ├── lzham_timer.h │ │ ├── lzham_traits.h │ │ ├── lzham_types.h │ │ ├── lzham_utils.h │ │ ├── lzham_vector.cpp │ │ ├── lzham_vector.h │ │ └── lzhamdecomp.vcxproj │ ├── lzhamdll │ │ ├── CMakeLists.txt │ │ ├── lzham.vcxproj │ │ ├── lzham_api.cpp │ │ ├── lzham_dll_main.cpp │ │ └── lzhamdll.def │ ├── lzhamlib │ │ ├── lzham_lib.cpp │ │ └── lzhamlib.vcxproj │ └── lzhamtest │ │ ├── CMakeLists.txt │ │ ├── lzhamtest.cpp │ │ ├── lzhamtest.vcxproj │ │ ├── timer.cpp │ │ └── timer.h ├── var_clang.mak ├── var_clang_arm64.mak ├── var_clang_x64.mak ├── var_clang_x86.mak ├── var_gcc.mak ├── var_gcc_arm64.mak ├── var_gcc_x64.mak ├── var_gcc_x86.mak ├── var_mac_arm64.mak ├── var_mac_x64.mak ├── warn_clang.mak ├── warn_clang_mac.mak ├── warn_gcc.mak ├── zstd │ ├── .buckconfig │ ├── .buckversion │ ├── .circleci │ │ ├── config.yml │ │ └── images │ │ │ └── primary │ │ │ └── Dockerfile │ ├── .cirrus.yml │ ├── .travis.yml │ ├── CHANGELOG │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── COPYING │ ├── LICENSE │ ├── Makefile │ ├── Package.swift │ ├── README.md │ ├── TESTING.md │ ├── appveyor.yml │ ├── build │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VS2008 │ │ │ ├── fullbench │ │ │ │ └── fullbench.vcproj │ │ │ ├── fuzzer │ │ │ │ └── fuzzer.vcproj │ │ │ ├── zstd.sln │ │ │ ├── zstd │ │ │ │ └── zstd.vcproj │ │ │ └── zstdlib │ │ │ │ └── zstdlib.vcproj │ │ ├── VS2010 │ │ │ ├── CompileAsCpp.props │ │ │ ├── datagen │ │ │ │ └── datagen.vcxproj │ │ │ ├── fullbench-dll │ │ │ │ └── fullbench-dll.vcxproj │ │ │ ├── fullbench │ │ │ │ └── fullbench.vcxproj │ │ │ ├── fuzzer │ │ │ │ └── fuzzer.vcxproj │ │ │ ├── libzstd-dll │ │ │ │ ├── libzstd-dll.rc │ │ │ │ └── libzstd-dll.vcxproj │ │ │ ├── libzstd │ │ │ │ └── libzstd.vcxproj │ │ │ ├── zstd.sln │ │ │ └── zstd │ │ │ │ ├── zstd.rc │ │ │ │ └── zstd.vcxproj │ │ ├── VS_scripts │ │ │ ├── README.md │ │ │ ├── build.VS2010.cmd │ │ │ ├── build.VS2012.cmd │ │ │ ├── build.VS2013.cmd │ │ │ ├── build.VS2015.cmd │ │ │ ├── build.VS2017.cmd │ │ │ ├── build.VS2017Community.cmd │ │ │ ├── build.VS2017Enterprise.cmd │ │ │ ├── build.VS2017Professional.cmd │ │ │ └── build.generic.cmd │ │ ├── cmake │ │ │ ├── CMakeLists.txt │ │ │ ├── CMakeModules │ │ │ │ ├── AddZstdCompilationFlags.cmake │ │ │ │ ├── FindLibLZ4.cmake │ │ │ │ └── GetZstdLibraryVersion.cmake │ │ │ ├── README.md │ │ │ ├── contrib │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── gen_html │ │ │ │ │ └── CMakeLists.txt │ │ │ │ └── pzstd │ │ │ │ │ └── CMakeLists.txt │ │ │ ├── lib │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── cmake_uninstall.cmake.in │ │ │ ├── programs │ │ │ │ └── CMakeLists.txt │ │ │ ├── tests │ │ │ │ └── CMakeLists.txt │ │ │ └── zstdConfig.cmake │ │ ├── meson │ │ │ ├── GetZstdLibraryVersion.py │ │ │ ├── InstallSymlink.py │ │ │ ├── README.md │ │ │ ├── contrib │ │ │ │ ├── gen_html │ │ │ │ │ └── meson.build │ │ │ │ ├── meson.build │ │ │ │ └── pzstd │ │ │ │ │ └── meson.build │ │ │ ├── lib │ │ │ │ └── meson.build │ │ │ ├── meson.build │ │ │ ├── meson_options.txt │ │ │ ├── programs │ │ │ │ └── meson.build │ │ │ └── tests │ │ │ │ ├── meson.build │ │ │ │ └── valgrindTest.py │ │ └── single_file_libs │ │ │ ├── README.md │ │ │ ├── build_decoder_test.sh │ │ │ ├── build_library_test.sh │ │ │ ├── combine.sh │ │ │ ├── create_single_file_decoder.sh │ │ │ ├── create_single_file_library.sh │ │ │ ├── examples │ │ │ ├── README.md │ │ │ ├── emscripten.c │ │ │ ├── roundtrip.c │ │ │ ├── shell.html │ │ │ ├── simple.c │ │ │ ├── testcard-dxt1.inl │ │ │ ├── testcard-zstd.inl │ │ │ └── testcard.png │ │ │ ├── zstd-in.c │ │ │ └── zstddeclib-in.c │ ├── contrib │ │ ├── VS2005 │ │ │ ├── README.md │ │ │ ├── fullbench │ │ │ │ └── fullbench.vcproj │ │ │ ├── fuzzer │ │ │ │ └── fuzzer.vcproj │ │ │ ├── zstd.sln │ │ │ ├── zstd │ │ │ │ └── zstd.vcproj │ │ │ └── zstdlib │ │ │ │ └── zstdlib.vcproj │ │ ├── cleanTabs │ │ ├── diagnose_corruption │ │ │ ├── Makefile │ │ │ └── check_flipped_bits.c │ │ ├── docker │ │ │ ├── Dockerfile │ │ │ └── README.md │ │ ├── freestanding_lib │ │ │ └── freestanding.py │ │ ├── gen_html │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── gen-zstd-manual.sh │ │ │ └── gen_html.cpp │ │ ├── largeNbDicts │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ └── largeNbDicts.c │ │ ├── linux-kernel │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── btrfs-benchmark.sh │ │ │ ├── btrfs-extract-benchmark.sh │ │ │ ├── decompress_sources.h │ │ │ ├── linux.mk │ │ │ ├── linux_zstd.h │ │ │ ├── mem.h │ │ │ ├── squashfs-benchmark.sh │ │ │ ├── test │ │ │ │ ├── Makefile │ │ │ │ ├── include │ │ │ │ │ ├── asm │ │ │ │ │ │ └── unaligned.h │ │ │ │ │ └── linux │ │ │ │ │ │ ├── compiler.h │ │ │ │ │ │ ├── errno.h │ │ │ │ │ │ ├── kernel.h │ │ │ │ │ │ ├── limits.h │ │ │ │ │ │ ├── math64.h │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ ├── printk.h │ │ │ │ │ │ ├── stddef.h │ │ │ │ │ │ ├── swab.h │ │ │ │ │ │ ├── types.h │ │ │ │ │ │ └── xxhash.h │ │ │ │ ├── macro-test.sh │ │ │ │ ├── static_test.c │ │ │ │ └── test.c │ │ │ ├── zstd_compress_module.c │ │ │ ├── zstd_decompress_module.c │ │ │ └── zstd_deps.h │ │ ├── match_finders │ │ │ ├── README.md │ │ │ ├── zstd_edist.c │ │ │ └── zstd_edist.h │ │ ├── premake │ │ │ ├── premake4.lua │ │ │ └── zstd.lua │ │ ├── pzstd │ │ │ ├── BUCK │ │ │ ├── ErrorHolder.h │ │ │ ├── Logging.h │ │ │ ├── Makefile │ │ │ ├── Options.cpp │ │ │ ├── Options.h │ │ │ ├── Pzstd.cpp │ │ │ ├── Pzstd.h │ │ │ ├── README.md │ │ │ ├── SkippableFrame.cpp │ │ │ ├── SkippableFrame.h │ │ │ ├── images │ │ │ │ ├── Cspeed.png │ │ │ │ └── Dspeed.png │ │ │ ├── main.cpp │ │ │ ├── test │ │ │ │ ├── BUCK │ │ │ │ ├── OptionsTest.cpp │ │ │ │ ├── PzstdTest.cpp │ │ │ │ ├── RoundTrip.h │ │ │ │ └── RoundTripTest.cpp │ │ │ └── utils │ │ │ │ ├── BUCK │ │ │ │ ├── Buffer.h │ │ │ │ ├── FileSystem.h │ │ │ │ ├── Likely.h │ │ │ │ ├── Range.h │ │ │ │ ├── ResourcePool.h │ │ │ │ ├── ScopeGuard.h │ │ │ │ ├── ThreadPool.h │ │ │ │ ├── WorkQueue.h │ │ │ │ └── test │ │ │ │ ├── BUCK │ │ │ │ ├── BufferTest.cpp │ │ │ │ ├── RangeTest.cpp │ │ │ │ ├── ResourcePoolTest.cpp │ │ │ │ ├── ScopeGuardTest.cpp │ │ │ │ ├── ThreadPoolTest.cpp │ │ │ │ └── WorkQueueTest.cpp │ │ ├── recovery │ │ │ ├── Makefile │ │ │ └── recover_directory.c │ │ ├── seekable_format │ │ │ ├── examples │ │ │ │ ├── Makefile │ │ │ │ ├── parallel_compression.c │ │ │ │ ├── parallel_processing.c │ │ │ │ ├── seekable_compression.c │ │ │ │ ├── seekable_decompression.c │ │ │ │ └── seekable_decompression_mem.c │ │ │ ├── tests │ │ │ │ ├── Makefile │ │ │ │ └── seekable_tests.c │ │ │ ├── zstd_seekable.h │ │ │ ├── zstd_seekable_compression_format.md │ │ │ ├── zstdseek_compress.c │ │ │ └── zstdseek_decompress.c │ │ └── snap │ │ │ └── snapcraft.yaml │ ├── doc │ │ ├── README.md │ │ ├── educational_decoder │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── harness.c │ │ │ ├── zstd_decompress.c │ │ │ └── zstd_decompress.h │ │ ├── images │ │ │ ├── CSpeed2.png │ │ │ ├── DCspeed5.png │ │ │ ├── DSpeed3.png │ │ │ ├── cdict_v136.png │ │ │ ├── dict-cr.png │ │ │ ├── dict-cs.png │ │ │ ├── dict-ds.png │ │ │ ├── zstd_cdict_v1_3_5.png │ │ │ └── zstd_logo86.png │ │ ├── zstd_compression_format.md │ │ └── zstd_manual.html │ ├── examples │ │ ├── Makefile │ │ ├── README.md │ │ ├── common.h │ │ ├── dictionary_compression.c │ │ ├── dictionary_decompression.c │ │ ├── multiple_simple_compression.c │ │ ├── multiple_streaming_compression.c │ │ ├── simple_compression.c │ │ ├── simple_decompression.c │ │ ├── streaming_compression.c │ │ ├── streaming_compression_thread_pool.c │ │ ├── streaming_decompression.c │ │ └── streaming_memory_usage.c │ ├── lib │ │ ├── BUCK │ │ ├── Makefile │ │ ├── README.md │ │ ├── common │ │ │ ├── bitstream.h │ │ │ ├── compiler.h │ │ │ ├── cpu.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── entropy_common.c │ │ │ ├── error_private.c │ │ │ ├── error_private.h │ │ │ ├── fse.h │ │ │ ├── fse_decompress.c │ │ │ ├── huf.h │ │ │ ├── mem.h │ │ │ ├── pool.c │ │ │ ├── pool.h │ │ │ ├── portability_macros.h │ │ │ ├── threading.c │ │ │ ├── threading.h │ │ │ ├── xxhash.c │ │ │ ├── xxhash.h │ │ │ ├── zstd_common.c │ │ │ ├── zstd_deps.h │ │ │ ├── zstd_internal.h │ │ │ └── zstd_trace.h │ │ ├── compress │ │ │ ├── clevels.h │ │ │ ├── fse_compress.c │ │ │ ├── hist.c │ │ │ ├── hist.h │ │ │ ├── huf_compress.c │ │ │ ├── zstd_compress.c │ │ │ ├── zstd_compress_internal.h │ │ │ ├── zstd_compress_literals.c │ │ │ ├── zstd_compress_literals.h │ │ │ ├── zstd_compress_sequences.c │ │ │ ├── zstd_compress_sequences.h │ │ │ ├── zstd_compress_superblock.c │ │ │ ├── zstd_compress_superblock.h │ │ │ ├── zstd_cwksp.h │ │ │ ├── zstd_double_fast.c │ │ │ ├── zstd_double_fast.h │ │ │ ├── zstd_fast.c │ │ │ ├── zstd_fast.h │ │ │ ├── zstd_lazy.c │ │ │ ├── zstd_lazy.h │ │ │ ├── zstd_ldm.c │ │ │ ├── zstd_ldm.h │ │ │ ├── zstd_ldm_geartab.h │ │ │ ├── zstd_opt.c │ │ │ ├── zstd_opt.h │ │ │ ├── zstdmt_compress.c │ │ │ └── zstdmt_compress.h │ │ ├── decompress │ │ │ ├── huf_decompress.c │ │ │ ├── huf_decompress_amd64.S │ │ │ ├── zstd_ddict.c │ │ │ ├── zstd_ddict.h │ │ │ ├── zstd_decompress.c │ │ │ ├── zstd_decompress_block.c │ │ │ ├── zstd_decompress_block.h │ │ │ └── zstd_decompress_internal.h │ │ ├── deprecated │ │ │ ├── zbuff.h │ │ │ ├── zbuff_common.c │ │ │ ├── zbuff_compress.c │ │ │ └── zbuff_decompress.c │ │ ├── dictBuilder │ │ │ ├── cover.c │ │ │ ├── cover.h │ │ │ ├── divsufsort.c │ │ │ ├── divsufsort.h │ │ │ ├── fastcover.c │ │ │ └── zdict.c │ │ ├── dll │ │ │ └── example │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── build_package.bat │ │ │ │ ├── fullbench-dll.sln │ │ │ │ └── fullbench-dll.vcxproj │ │ ├── legacy │ │ │ ├── zstd_legacy.h │ │ │ ├── zstd_v01.c │ │ │ ├── zstd_v01.h │ │ │ ├── zstd_v02.c │ │ │ ├── zstd_v02.h │ │ │ ├── zstd_v03.c │ │ │ ├── zstd_v03.h │ │ │ ├── zstd_v04.c │ │ │ ├── zstd_v04.h │ │ │ ├── zstd_v05.c │ │ │ ├── zstd_v05.h │ │ │ ├── zstd_v06.c │ │ │ ├── zstd_v06.h │ │ │ ├── zstd_v07.c │ │ │ └── zstd_v07.h │ │ ├── libzstd.mk │ │ ├── libzstd.pc.in │ │ ├── module.modulemap │ │ ├── zdict.h │ │ ├── zstd.h │ │ └── zstd_errors.h │ ├── programs │ │ ├── BUCK │ │ ├── Makefile │ │ ├── README.md │ │ ├── benchfn.c │ │ ├── benchfn.h │ │ ├── benchzstd.c │ │ ├── benchzstd.h │ │ ├── datagen.c │ │ ├── datagen.h │ │ ├── dibio.c │ │ ├── dibio.h │ │ ├── fileio.c │ │ ├── fileio.h │ │ ├── platform.h │ │ ├── timefn.c │ │ ├── timefn.h │ │ ├── util.c │ │ ├── util.h │ │ ├── windres │ │ │ ├── verrsrc.h │ │ │ ├── zstd.rc │ │ │ ├── zstd32.res │ │ │ └── zstd64.res │ │ ├── zstd.1 │ │ ├── zstd.1.md │ │ ├── zstdcli.c │ │ ├── zstdcli_trace.c │ │ ├── zstdcli_trace.h │ │ ├── zstdgrep │ │ ├── zstdgrep.1 │ │ ├── zstdgrep.1.md │ │ ├── zstdless │ │ ├── zstdless.1 │ │ └── zstdless.1.md │ ├── tests │ │ ├── DEPRECATED-test-zstd-speed.py │ │ ├── Makefile │ │ ├── README.md │ │ ├── automated_benchmarking.py │ │ ├── bigdict.c │ │ ├── checkTag.c │ │ ├── datagencli.c │ │ ├── decodecorpus.c │ │ ├── dict-files │ │ │ └── zero-weight-dict │ │ ├── fullbench.c │ │ ├── fuzz │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── block_decompress.c │ │ │ ├── block_round_trip.c │ │ │ ├── decompress_dstSize_tooSmall.c │ │ │ ├── dictionary_decompress.c │ │ │ ├── dictionary_loader.c │ │ │ ├── dictionary_round_trip.c │ │ │ ├── dictionary_stream_round_trip.c │ │ │ ├── fse_read_ncount.c │ │ │ ├── fuzz.h │ │ │ ├── fuzz.py │ │ │ ├── fuzz_data_producer.c │ │ │ ├── fuzz_data_producer.h │ │ │ ├── fuzz_helpers.c │ │ │ ├── fuzz_helpers.h │ │ │ ├── huf_decompress.c │ │ │ ├── huf_round_trip.c │ │ │ ├── raw_dictionary_round_trip.c │ │ │ ├── regression_driver.c │ │ │ ├── seekable_roundtrip.c │ │ │ ├── sequence_compression_api.c │ │ │ ├── simple_compress.c │ │ │ ├── simple_decompress.c │ │ │ ├── simple_round_trip.c │ │ │ ├── stream_decompress.c │ │ │ ├── stream_round_trip.c │ │ │ ├── zstd_frame_info.c │ │ │ ├── zstd_helpers.c │ │ │ └── zstd_helpers.h │ │ ├── fuzzer.c │ │ ├── golden-compression │ │ │ ├── http │ │ │ └── huffman-compressed-larger │ │ ├── golden-dictionaries │ │ │ └── http-dict-missing-symbols │ │ ├── gzip │ │ │ ├── Makefile │ │ │ ├── gzip-env.sh │ │ │ ├── helin-segv.sh │ │ │ ├── help-version.sh │ │ │ ├── hufts-segv.gz │ │ │ ├── hufts.sh │ │ │ ├── init.cfg │ │ │ ├── init.sh │ │ │ ├── keep.sh │ │ │ ├── list.sh │ │ │ ├── memcpy-abuse.sh │ │ │ ├── mixed.sh │ │ │ ├── null-suffix-clobber.sh │ │ │ ├── stdin.sh │ │ │ ├── test-driver.sh │ │ │ ├── trailing-nul.sh │ │ │ ├── unpack-invalid.sh │ │ │ ├── z-suffix.sh │ │ │ ├── zdiff.sh │ │ │ ├── zgrep-context.sh │ │ │ ├── zgrep-f.sh │ │ │ ├── zgrep-signal.sh │ │ │ └── znew-k.sh │ │ ├── invalidDictionaries.c │ │ ├── legacy.c │ │ ├── libzstd_builds.sh │ │ ├── longmatch.c │ │ ├── paramgrill.c │ │ ├── playTests.sh │ │ ├── poolTests.c │ │ ├── rateLimiter.py │ │ ├── regression │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── config.c │ │ │ ├── config.h │ │ │ ├── data.c │ │ │ ├── data.h │ │ │ ├── levels.h │ │ │ ├── method.c │ │ │ ├── method.h │ │ │ ├── result.c │ │ │ ├── result.h │ │ │ ├── results.csv │ │ │ └── test.c │ │ ├── roundTripCrash.c │ │ ├── seqgen.c │ │ ├── seqgen.h │ │ ├── test-license.py │ │ ├── test-variants.sh │ │ ├── test-zstd-versions.py │ │ └── zstreamtest.c │ └── zlibWrapper │ │ ├── BUCK │ │ ├── Makefile │ │ ├── README.md │ │ ├── examples │ │ ├── example.c │ │ ├── example_original.c │ │ ├── fitblk.c │ │ ├── fitblk_original.c │ │ ├── minigzip.c │ │ └── zwrapbench.c │ │ ├── gzclose.c │ │ ├── gzcompatibility.h │ │ ├── gzguts.h │ │ ├── gzlib.c │ │ ├── gzread.c │ │ ├── gzwrite.c │ │ ├── zstd_zlibwrapper.c │ │ └── zstd_zlibwrapper.h └── zstdmt │ ├── LICENSE │ ├── README.md │ ├── brotli-mt.h │ ├── brotli-mt_common.c │ ├── brotli-mt_compress.c │ ├── brotli-mt_decompress.c │ ├── list.h │ ├── lizard-mt.h │ ├── lizard-mt_common.c │ ├── lizard-mt_compress.c │ ├── lizard-mt_decompress.c │ ├── lz4-mt.h │ ├── lz4-mt_common.c │ ├── lz4-mt_compress.c │ ├── lz4-mt_decompress.c │ ├── lz5-mt.h │ ├── lz5-mt_common.c │ ├── lz5-mt_compress.c │ ├── lz5-mt_decompress.c │ ├── memmt.h │ ├── threading.h │ └── zstd-mt_threading.c ├── CPP ├── 7zip │ ├── 7zip.mak │ ├── 7zip_gcc.mak │ ├── Aes.mak │ ├── Archive │ │ ├── 7z │ │ │ ├── 7z.dsp │ │ │ ├── 7z.dsw │ │ │ ├── 7zCompressionMode.cpp │ │ │ ├── 7zCompressionMode.h │ │ │ ├── 7zDecode.cpp │ │ │ ├── 7zDecode.h │ │ │ ├── 7zEncode.cpp │ │ │ ├── 7zEncode.h │ │ │ ├── 7zExtract.cpp │ │ │ ├── 7zFolderInStream.cpp │ │ │ ├── 7zFolderInStream.h │ │ │ ├── 7zHandler.cpp │ │ │ ├── 7zHandler.h │ │ │ ├── 7zHandlerOut.cpp │ │ │ ├── 7zHeader.cpp │ │ │ ├── 7zHeader.h │ │ │ ├── 7zIn.cpp │ │ │ ├── 7zIn.h │ │ │ ├── 7zItem.h │ │ │ ├── 7zOut.cpp │ │ │ ├── 7zOut.h │ │ │ ├── 7zProperties.cpp │ │ │ ├── 7zProperties.h │ │ │ ├── 7zRegister.cpp │ │ │ ├── 7zSpecStream.cpp │ │ │ ├── 7zSpecStream.h │ │ │ ├── 7zUpdate.cpp │ │ │ ├── 7zUpdate.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── ApfsHandler.cpp │ │ ├── ApmHandler.cpp │ │ ├── ArHandler.cpp │ │ ├── Archive.def │ │ ├── Archive2.def │ │ ├── ArchiveExports.cpp │ │ ├── ArjHandler.cpp │ │ ├── Base64Handler.cpp │ │ ├── Bz2Handler.cpp │ │ ├── Cab │ │ │ ├── CabBlockInStream.cpp │ │ │ ├── CabBlockInStream.h │ │ │ ├── CabHandler.cpp │ │ │ ├── CabHandler.h │ │ │ ├── CabHeader.cpp │ │ │ ├── CabHeader.h │ │ │ ├── CabIn.cpp │ │ │ ├── CabIn.h │ │ │ ├── CabItem.h │ │ │ ├── CabRegister.cpp │ │ │ └── StdAfx.h │ │ ├── Chm │ │ │ ├── ChmHandler.cpp │ │ │ ├── ChmHandler.h │ │ │ ├── ChmIn.cpp │ │ │ ├── ChmIn.h │ │ │ └── StdAfx.h │ │ ├── ComHandler.cpp │ │ ├── Common │ │ │ ├── CoderMixer2.cpp │ │ │ ├── CoderMixer2.h │ │ │ ├── DummyOutStream.cpp │ │ │ ├── DummyOutStream.h │ │ │ ├── FindSignature.cpp │ │ │ ├── FindSignature.h │ │ │ ├── HandlerOut.cpp │ │ │ ├── HandlerOut.h │ │ │ ├── InStreamWithCRC.cpp │ │ │ ├── InStreamWithCRC.h │ │ │ ├── ItemNameUtils.cpp │ │ │ ├── ItemNameUtils.h │ │ │ ├── MultiStream.cpp │ │ │ ├── MultiStream.h │ │ │ ├── OutStreamWithCRC.cpp │ │ │ ├── OutStreamWithCRC.h │ │ │ ├── OutStreamWithSha1.cpp │ │ │ ├── OutStreamWithSha1.h │ │ │ ├── ParseProperties.cpp │ │ │ ├── ParseProperties.h │ │ │ └── StdAfx.h │ │ ├── CpioHandler.cpp │ │ ├── CramfsHandler.cpp │ │ ├── DeflateProps.cpp │ │ ├── DeflateProps.h │ │ ├── DllExports.cpp │ │ ├── DllExports2.cpp │ │ ├── DmgHandler.cpp │ │ ├── ElfHandler.cpp │ │ ├── ExtHandler.cpp │ │ ├── FatHandler.cpp │ │ ├── FlvHandler.cpp │ │ ├── GptHandler.cpp │ │ ├── GzHandler.cpp │ │ ├── HandlerCont.cpp │ │ ├── HandlerCont.h │ │ ├── HfsHandler.cpp │ │ ├── IArchive.h │ │ ├── Icons │ │ │ ├── 7z.ico │ │ │ ├── apfs.ico │ │ │ ├── arj.ico │ │ │ ├── bz2.ico │ │ │ ├── cab.ico │ │ │ ├── cpio.ico │ │ │ ├── deb.ico │ │ │ ├── dmg.ico │ │ │ ├── fat.ico │ │ │ ├── gz.ico │ │ │ ├── hfs.ico │ │ │ ├── iso.ico │ │ │ ├── lzh.ico │ │ │ ├── lzma.ico │ │ │ ├── ntfs.ico │ │ │ ├── rar.ico │ │ │ ├── rpm.ico │ │ │ ├── split.ico │ │ │ ├── squashfs.ico │ │ │ ├── tar.ico │ │ │ ├── vhd.ico │ │ │ ├── wim.ico │ │ │ ├── xar.ico │ │ │ ├── xz.ico │ │ │ ├── z.ico │ │ │ └── zip.ico │ │ ├── IhexHandler.cpp │ │ ├── Iso │ │ │ ├── IsoHandler.cpp │ │ │ ├── IsoHandler.h │ │ │ ├── IsoHeader.cpp │ │ │ ├── IsoHeader.h │ │ │ ├── IsoIn.cpp │ │ │ ├── IsoIn.h │ │ │ ├── IsoItem.h │ │ │ ├── IsoRegister.cpp │ │ │ └── StdAfx.h │ │ ├── LizardHandler.cpp │ │ ├── LpHandler.cpp │ │ ├── Lz4Handler.cpp │ │ ├── Lz5Handler.cpp │ │ ├── LzhHandler.cpp │ │ ├── LzmaHandler.cpp │ │ ├── MachoHandler.cpp │ │ ├── MbrHandler.cpp │ │ ├── MslzHandler.cpp │ │ ├── MubHandler.cpp │ │ ├── Nsis │ │ │ ├── NsisDecode.cpp │ │ │ ├── NsisDecode.h │ │ │ ├── NsisHandler.cpp │ │ │ ├── NsisHandler.h │ │ │ ├── NsisIn.cpp │ │ │ ├── NsisIn.h │ │ │ ├── NsisRegister.cpp │ │ │ └── StdAfx.h │ │ ├── NtfsHandler.cpp │ │ ├── PeHandler.cpp │ │ ├── PpmdHandler.cpp │ │ ├── QcowHandler.cpp │ │ ├── Rar │ │ │ ├── Rar5Handler.cpp │ │ │ ├── Rar5Handler.h │ │ │ ├── RarHandler.cpp │ │ │ ├── RarHandler.h │ │ │ ├── RarHeader.h │ │ │ ├── RarItem.h │ │ │ ├── RarVol.h │ │ │ ├── StdAfx.cpp │ │ │ └── StdAfx.h │ │ ├── RpmHandler.cpp │ │ ├── SparseHandler.cpp │ │ ├── SplitHandler.cpp │ │ ├── SquashfsHandler.cpp │ │ ├── StdAfx.h │ │ ├── SwfHandler.cpp │ │ ├── Tar │ │ │ ├── StdAfx.h │ │ │ ├── TarHandler.cpp │ │ │ ├── TarHandler.h │ │ │ ├── TarHandlerOut.cpp │ │ │ ├── TarHeader.cpp │ │ │ ├── TarHeader.h │ │ │ ├── TarIn.cpp │ │ │ ├── TarIn.h │ │ │ ├── TarItem.h │ │ │ ├── TarOut.cpp │ │ │ ├── TarOut.h │ │ │ ├── TarRegister.cpp │ │ │ ├── TarUpdate.cpp │ │ │ └── TarUpdate.h │ │ ├── Udf │ │ │ ├── StdAfx.h │ │ │ ├── UdfHandler.cpp │ │ │ ├── UdfHandler.h │ │ │ ├── UdfIn.cpp │ │ │ └── UdfIn.h │ │ ├── UefiHandler.cpp │ │ ├── VdiHandler.cpp │ │ ├── VhdHandler.cpp │ │ ├── VhdxHandler.cpp │ │ ├── VmdkHandler.cpp │ │ ├── Wim │ │ │ ├── StdAfx.h │ │ │ ├── WimHandler.cpp │ │ │ ├── WimHandler.h │ │ │ ├── WimHandlerOut.cpp │ │ │ ├── WimIn.cpp │ │ │ ├── WimIn.h │ │ │ └── WimRegister.cpp │ │ ├── XarHandler.cpp │ │ ├── XzHandler.cpp │ │ ├── XzHandler.h │ │ ├── ZHandler.cpp │ │ ├── Zip │ │ │ ├── StdAfx.h │ │ │ ├── ZipAddCommon.cpp │ │ │ ├── ZipAddCommon.h │ │ │ ├── ZipCompressionMode.h │ │ │ ├── ZipHandler.cpp │ │ │ ├── ZipHandler.h │ │ │ ├── ZipHandlerOut.cpp │ │ │ ├── ZipHeader.h │ │ │ ├── ZipIn.cpp │ │ │ ├── ZipIn.h │ │ │ ├── ZipItem.cpp │ │ │ ├── ZipItem.h │ │ │ ├── ZipOut.cpp │ │ │ ├── ZipOut.h │ │ │ ├── ZipRegister.cpp │ │ │ ├── ZipUpdate.cpp │ │ │ └── ZipUpdate.h │ │ ├── ZstdHandler.cpp │ │ └── makefile │ ├── Asm.mak │ ├── Bundles │ │ ├── Alone │ │ │ ├── Alone.dsp │ │ │ ├── Alone.dsw │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── afxres.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── Alone2 │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── Alone7z │ │ │ ├── Alone.dsp │ │ │ ├── Alone.dsw │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── Fm │ │ │ ├── FM.dsp │ │ │ ├── FM.dsw │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── Format7z │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── Format7zExtract │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── Format7zExtractR │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── Format7zF │ │ │ ├── Arc.mak │ │ │ ├── Arc_gcc.mak │ │ │ ├── Format7z.dsp │ │ │ ├── Format7z.dsw │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── Format7zR │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── LzmaCon │ │ │ ├── LzmaAlone.cpp │ │ │ ├── LzmaCon.dsp │ │ │ ├── LzmaCon.dsw │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── SFXCon │ │ │ ├── 7z.ico │ │ │ ├── SFXCon.dsp │ │ │ ├── SFXCon.dsw │ │ │ ├── SfxCon.cpp │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── SFXSetup │ │ │ ├── ExtractCallbackSfx.cpp │ │ │ ├── ExtractCallbackSfx.h │ │ │ ├── ExtractEngine.cpp │ │ │ ├── ExtractEngine.h │ │ │ ├── SFXSetup.dsp │ │ │ ├── SFXSetup.dsw │ │ │ ├── SfxSetup.cpp │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ ├── resource.rc │ │ │ └── setup.ico │ │ ├── SFXWin │ │ │ ├── 7z.ico │ │ │ ├── SFXWin.dsp │ │ │ ├── SFXWin.dsw │ │ │ ├── SfxWin.cpp │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ └── resource.rc │ │ └── makefile │ ├── Common │ │ ├── CWrappers.cpp │ │ ├── CWrappers.h │ │ ├── CreateCoder.cpp │ │ ├── CreateCoder.h │ │ ├── FilePathAutoRename.cpp │ │ ├── FilePathAutoRename.h │ │ ├── FileStreams.cpp │ │ ├── FileStreams.h │ │ ├── FilterCoder.cpp │ │ ├── FilterCoder.h │ │ ├── InBuffer.cpp │ │ ├── InBuffer.h │ │ ├── InOutTempBuffer.cpp │ │ ├── InOutTempBuffer.h │ │ ├── LimitedStreams.cpp │ │ ├── LimitedStreams.h │ │ ├── LockedStream.cpp │ │ ├── LockedStream.h │ │ ├── MemBlocks.cpp │ │ ├── MemBlocks.h │ │ ├── MethodId.cpp │ │ ├── MethodId.h │ │ ├── MethodProps.cpp │ │ ├── MethodProps.h │ │ ├── OffsetStream.cpp │ │ ├── OffsetStream.h │ │ ├── OutBuffer.cpp │ │ ├── OutBuffer.h │ │ ├── OutMemStream.cpp │ │ ├── OutMemStream.h │ │ ├── ProgressMt.cpp │ │ ├── ProgressMt.h │ │ ├── ProgressUtils.cpp │ │ ├── ProgressUtils.h │ │ ├── PropId.cpp │ │ ├── RegisterArc.h │ │ ├── RegisterCodec.h │ │ ├── StdAfx.h │ │ ├── StreamBinder.cpp │ │ ├── StreamBinder.h │ │ ├── StreamObjects.cpp │ │ ├── StreamObjects.h │ │ ├── StreamUtils.cpp │ │ ├── StreamUtils.h │ │ ├── UniqBlocks.cpp │ │ ├── UniqBlocks.h │ │ ├── VirtThread.cpp │ │ └── VirtThread.h │ ├── Compress │ │ ├── BZip2Const.h │ │ ├── BZip2Crc.cpp │ │ ├── BZip2Crc.h │ │ ├── BZip2Decoder.cpp │ │ ├── BZip2Decoder.h │ │ ├── BZip2Encoder.cpp │ │ ├── BZip2Encoder.h │ │ ├── BZip2Register.cpp │ │ ├── Bcj2Coder.cpp │ │ ├── Bcj2Coder.h │ │ ├── Bcj2Register.cpp │ │ ├── BcjCoder.cpp │ │ ├── BcjCoder.h │ │ ├── BcjRegister.cpp │ │ ├── BitlDecoder.cpp │ │ ├── BitlDecoder.h │ │ ├── BitlEncoder.h │ │ ├── BitmDecoder.h │ │ ├── BitmEncoder.h │ │ ├── BranchMisc.cpp │ │ ├── BranchMisc.h │ │ ├── BranchRegister.cpp │ │ ├── BrotliDecoder.cpp │ │ ├── BrotliDecoder.h │ │ ├── BrotliEncoder.cpp │ │ ├── BrotliEncoder.h │ │ ├── BrotliRegister.cpp │ │ ├── ByteSwap.cpp │ │ ├── Codec.def │ │ ├── CodecExports.cpp │ │ ├── CopyCoder.cpp │ │ ├── CopyCoder.h │ │ ├── CopyRegister.cpp │ │ ├── Deflate64Register.cpp │ │ ├── DeflateConst.h │ │ ├── DeflateDecoder.cpp │ │ ├── DeflateDecoder.h │ │ ├── DeflateEncoder.cpp │ │ ├── DeflateEncoder.h │ │ ├── DeflateRegister.cpp │ │ ├── DeltaFilter.cpp │ │ ├── DllExports2Compress.cpp │ │ ├── DllExportsCompress.cpp │ │ ├── FastLzma2Register.cpp │ │ ├── HuffmanDecoder.h │ │ ├── ImplodeDecoder.cpp │ │ ├── ImplodeDecoder.h │ │ ├── ImplodeHuffmanDecoder.cpp │ │ ├── ImplodeHuffmanDecoder.h │ │ ├── LizardDecoder.cpp │ │ ├── LizardDecoder.h │ │ ├── LizardEncoder.cpp │ │ ├── LizardEncoder.h │ │ ├── LizardRegister.cpp │ │ ├── Lz4Decoder.cpp │ │ ├── Lz4Decoder.h │ │ ├── Lz4Encoder.cpp │ │ ├── Lz4Encoder.h │ │ ├── Lz4Register.cpp │ │ ├── Lz5Decoder.cpp │ │ ├── Lz5Decoder.h │ │ ├── Lz5Encoder.cpp │ │ ├── Lz5Encoder.h │ │ ├── Lz5Register.cpp │ │ ├── LzOutWindow.cpp │ │ ├── LzOutWindow.h │ │ ├── LzfseDecoder.cpp │ │ ├── LzfseDecoder.h │ │ ├── LzhDecoder.cpp │ │ ├── LzhDecoder.h │ │ ├── LzhamRegister.cpp │ │ ├── Lzma2Decoder.cpp │ │ ├── Lzma2Decoder.h │ │ ├── Lzma2Encoder.cpp │ │ ├── Lzma2Encoder.h │ │ ├── Lzma2Register.cpp │ │ ├── LzmaDecoder.cpp │ │ ├── LzmaDecoder.h │ │ ├── LzmaEncoder.cpp │ │ ├── LzmaEncoder.h │ │ ├── LzmaRegister.cpp │ │ ├── LzmsDecoder.cpp │ │ ├── LzmsDecoder.h │ │ ├── Lzx.h │ │ ├── LzxDecoder.cpp │ │ ├── LzxDecoder.h │ │ ├── Mtf8.h │ │ ├── PpmdDecoder.cpp │ │ ├── PpmdDecoder.h │ │ ├── PpmdEncoder.cpp │ │ ├── PpmdEncoder.h │ │ ├── PpmdRegister.cpp │ │ ├── PpmdZip.cpp │ │ ├── PpmdZip.h │ │ ├── QuantumDecoder.cpp │ │ ├── QuantumDecoder.h │ │ ├── Rar1Decoder.cpp │ │ ├── Rar1Decoder.h │ │ ├── Rar2Decoder.cpp │ │ ├── Rar2Decoder.h │ │ ├── Rar3Decoder.cpp │ │ ├── Rar3Decoder.h │ │ ├── Rar3Vm.cpp │ │ ├── Rar3Vm.h │ │ ├── Rar5Decoder.cpp │ │ ├── Rar5Decoder.h │ │ ├── RarCodecsRegister.cpp │ │ ├── ShrinkDecoder.cpp │ │ ├── ShrinkDecoder.h │ │ ├── StdAfx.h │ │ ├── XpressDecoder.cpp │ │ ├── XpressDecoder.h │ │ ├── XzDecoder.cpp │ │ ├── XzDecoder.h │ │ ├── XzEncoder.cpp │ │ ├── XzEncoder.h │ │ ├── ZDecoder.cpp │ │ ├── ZDecoder.h │ │ ├── ZlibDecoder.cpp │ │ ├── ZlibDecoder.h │ │ ├── ZlibEncoder.cpp │ │ ├── ZlibEncoder.h │ │ ├── ZstdDecoder.cpp │ │ ├── ZstdDecoder.h │ │ ├── ZstdEncoder.cpp │ │ ├── ZstdEncoder.h │ │ ├── ZstdRegister.cpp │ │ └── makefile │ ├── Crc.mak │ ├── Crc64.mak │ ├── Crypto │ │ ├── 7zAes.cpp │ │ ├── 7zAes.h │ │ ├── 7zAesRegister.cpp │ │ ├── Codec.def │ │ ├── HmacSha1.cpp │ │ ├── HmacSha1.h │ │ ├── HmacSha256.cpp │ │ ├── HmacSha256.h │ │ ├── MyAes.cpp │ │ ├── MyAes.h │ │ ├── MyAesReg.cpp │ │ ├── Pbkdf2HmacSha1.cpp │ │ ├── Pbkdf2HmacSha1.h │ │ ├── RandGen.cpp │ │ ├── RandGen.h │ │ ├── Rar20Crypto.cpp │ │ ├── Rar20Crypto.h │ │ ├── Rar5Aes.cpp │ │ ├── Rar5Aes.h │ │ ├── RarAes.cpp │ │ ├── RarAes.h │ │ ├── Sha1Cls.h │ │ ├── StdAfx.h │ │ ├── WzAes.cpp │ │ ├── WzAes.h │ │ ├── ZipCrypto.cpp │ │ ├── ZipCrypto.h │ │ ├── ZipStrong.cpp │ │ └── ZipStrong.h │ ├── GuiCommon.rc │ ├── Guid.txt │ ├── ICoder.h │ ├── IDecl.h │ ├── IPassword.h │ ├── IProgress.h │ ├── IStream.h │ ├── LzFindOpt.mak │ ├── LzmaDec.mak │ ├── LzmaDec_gcc.mak │ ├── MyVersion.h │ ├── MyVersionInfo.rc │ ├── PropID.h │ ├── Sha1.mak │ ├── Sha256.mak │ ├── SubBuild.mak │ ├── UI │ │ ├── Agent │ │ │ ├── Agent.cpp │ │ │ ├── Agent.h │ │ │ ├── AgentOut.cpp │ │ │ ├── AgentProxy.cpp │ │ │ ├── AgentProxy.h │ │ │ ├── ArchiveFolder.cpp │ │ │ ├── ArchiveFolderOpen.cpp │ │ │ ├── ArchiveFolderOut.cpp │ │ │ ├── IFolderArchive.h │ │ │ ├── StdAfx.h │ │ │ ├── UpdateCallbackAgent.cpp │ │ │ └── UpdateCallbackAgent.h │ │ ├── Client7z │ │ │ ├── Client7z.cpp │ │ │ ├── Client7z.dsp │ │ │ ├── Client7z.dsw │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── Common │ │ │ ├── ArchiveCommandLine.cpp │ │ │ ├── ArchiveCommandLine.h │ │ │ ├── ArchiveExtractCallback.cpp │ │ │ ├── ArchiveExtractCallback.h │ │ │ ├── ArchiveName.cpp │ │ │ ├── ArchiveName.h │ │ │ ├── ArchiveOpenCallback.cpp │ │ │ ├── ArchiveOpenCallback.h │ │ │ ├── Bench.cpp │ │ │ ├── Bench.h │ │ │ ├── CompressCall.cpp │ │ │ ├── CompressCall.h │ │ │ ├── CompressCall2.cpp │ │ │ ├── DefaultName.cpp │ │ │ ├── DefaultName.h │ │ │ ├── DirItem.h │ │ │ ├── EnumDirItems.cpp │ │ │ ├── EnumDirItems.h │ │ │ ├── ExitCode.h │ │ │ ├── Extract.cpp │ │ │ ├── Extract.h │ │ │ ├── ExtractMode.h │ │ │ ├── ExtractingFilePath.cpp │ │ │ ├── ExtractingFilePath.h │ │ │ ├── HashCalc.cpp │ │ │ ├── HashCalc.h │ │ │ ├── IFileExtractCallback.h │ │ │ ├── LoadCodecs.cpp │ │ │ ├── LoadCodecs.h │ │ │ ├── OpenArchive.cpp │ │ │ ├── OpenArchive.h │ │ │ ├── PropIDUtils.cpp │ │ │ ├── PropIDUtils.h │ │ │ ├── Property.h │ │ │ ├── SetProperties.cpp │ │ │ ├── SetProperties.h │ │ │ ├── SortUtils.cpp │ │ │ ├── SortUtils.h │ │ │ ├── StdAfx.h │ │ │ ├── TempFiles.cpp │ │ │ ├── TempFiles.h │ │ │ ├── Update.cpp │ │ │ ├── Update.h │ │ │ ├── UpdateAction.cpp │ │ │ ├── UpdateAction.h │ │ │ ├── UpdateCallback.cpp │ │ │ ├── UpdateCallback.h │ │ │ ├── UpdatePair.cpp │ │ │ ├── UpdatePair.h │ │ │ ├── UpdateProduce.cpp │ │ │ ├── UpdateProduce.h │ │ │ ├── WorkDir.cpp │ │ │ ├── WorkDir.h │ │ │ ├── ZipRegistry.cpp │ │ │ └── ZipRegistry.h │ │ ├── Console │ │ │ ├── BenchCon.cpp │ │ │ ├── BenchCon.h │ │ │ ├── Console.dsp │ │ │ ├── Console.dsw │ │ │ ├── Console.mak │ │ │ ├── Console.manifest │ │ │ ├── ConsoleClose.cpp │ │ │ ├── ConsoleClose.h │ │ │ ├── ExtractCallbackConsole.cpp │ │ │ ├── ExtractCallbackConsole.h │ │ │ ├── HashCon.cpp │ │ │ ├── HashCon.h │ │ │ ├── List.cpp │ │ │ ├── List.h │ │ │ ├── Main.cpp │ │ │ ├── MainAr.cpp │ │ │ ├── OpenCallbackConsole.cpp │ │ │ ├── OpenCallbackConsole.h │ │ │ ├── PercentPrinter.cpp │ │ │ ├── PercentPrinter.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UpdateCallbackConsole.cpp │ │ │ ├── UpdateCallbackConsole.h │ │ │ ├── UserInputUtils.cpp │ │ │ ├── UserInputUtils.h │ │ │ ├── makefile │ │ │ ├── makefile.gcc │ │ │ └── resource.rc │ │ ├── Explorer │ │ │ ├── 7-zip.dll.manifest │ │ │ ├── ContextMenu.cpp │ │ │ ├── ContextMenu.h │ │ │ ├── ContextMenuFlags.h │ │ │ ├── DllExportsExplorer.cpp │ │ │ ├── Explorer.def │ │ │ ├── Explorer.dsp │ │ │ ├── Explorer.dsw │ │ │ ├── MenuLogo.bmp │ │ │ ├── MyExplorerCommand.h │ │ │ ├── MyMessages.cpp │ │ │ ├── MyMessages.h │ │ │ ├── RegistryContextMenu.cpp │ │ │ ├── RegistryContextMenu.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ ├── resource.rc │ │ │ └── resource2.rc │ │ ├── Far │ │ │ ├── ExtractEngine.cpp │ │ │ ├── ExtractEngine.h │ │ │ ├── Far.cpp │ │ │ ├── Far.def │ │ │ ├── Far.dsp │ │ │ ├── Far.dsw │ │ │ ├── FarPlugin.h │ │ │ ├── FarUtils.cpp │ │ │ ├── FarUtils.h │ │ │ ├── Messages.h │ │ │ ├── OverwriteDialogFar.cpp │ │ │ ├── OverwriteDialogFar.h │ │ │ ├── Plugin.cpp │ │ │ ├── Plugin.h │ │ │ ├── PluginCommon.cpp │ │ │ ├── PluginDelete.cpp │ │ │ ├── PluginRead.cpp │ │ │ ├── PluginWrite.cpp │ │ │ ├── ProgressBox.cpp │ │ │ ├── ProgressBox.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UpdateCallbackFar.cpp │ │ │ ├── UpdateCallbackFar.h │ │ │ ├── makefile │ │ │ └── resource.rc │ │ ├── FileManager │ │ │ ├── 7zFM.exe.manifest │ │ │ ├── 7zipLogo.ico │ │ │ ├── AboutDialog.cpp │ │ │ ├── AboutDialog.h │ │ │ ├── AboutDialog.rc │ │ │ ├── AboutDialogRes.h │ │ │ ├── Add.bmp │ │ │ ├── Add2.bmp │ │ │ ├── AltStreamsFolder.cpp │ │ │ ├── AltStreamsFolder.h │ │ │ ├── App.cpp │ │ │ ├── App.h │ │ │ ├── AppState.h │ │ │ ├── BrowseDialog.cpp │ │ │ ├── BrowseDialog.h │ │ │ ├── BrowseDialog.rc │ │ │ ├── BrowseDialogRes.h │ │ │ ├── ClassDefs.cpp │ │ │ ├── ComboDialog.cpp │ │ │ ├── ComboDialog.h │ │ │ ├── ComboDialog.rc │ │ │ ├── ComboDialogRes.h │ │ │ ├── Copy.bmp │ │ │ ├── Copy2.bmp │ │ │ ├── CopyDialog.cpp │ │ │ ├── CopyDialog.h │ │ │ ├── CopyDialog.rc │ │ │ ├── CopyDialogRes.h │ │ │ ├── Delete.bmp │ │ │ ├── Delete2.bmp │ │ │ ├── DialogSize.h │ │ │ ├── EditDialog.cpp │ │ │ ├── EditDialog.h │ │ │ ├── EditDialog.rc │ │ │ ├── EditDialogRes.h │ │ │ ├── EditPage.cpp │ │ │ ├── EditPage.h │ │ │ ├── EditPage.rc │ │ │ ├── EditPage2.rc │ │ │ ├── EditPageRes.h │ │ │ ├── EnumFormatEtc.cpp │ │ │ ├── EnumFormatEtc.h │ │ │ ├── Extract.bmp │ │ │ ├── Extract2.bmp │ │ │ ├── ExtractCallback.cpp │ │ │ ├── ExtractCallback.h │ │ │ ├── FM.cpp │ │ │ ├── FM.dsp │ │ │ ├── FM.dsw │ │ │ ├── FM.ico │ │ │ ├── FM.mak │ │ │ ├── FSDrives.cpp │ │ │ ├── FSDrives.h │ │ │ ├── FSFolder.cpp │ │ │ ├── FSFolder.h │ │ │ ├── FSFolderCopy.cpp │ │ │ ├── FileFolderPluginOpen.cpp │ │ │ ├── FileFolderPluginOpen.h │ │ │ ├── FilePlugins.cpp │ │ │ ├── FilePlugins.h │ │ │ ├── FoldersPage.cpp │ │ │ ├── FoldersPage.h │ │ │ ├── FoldersPage.rc │ │ │ ├── FoldersPage2.rc │ │ │ ├── FoldersPageRes.h │ │ │ ├── FormatUtils.cpp │ │ │ ├── FormatUtils.h │ │ │ ├── HelpUtils.cpp │ │ │ ├── HelpUtils.h │ │ │ ├── IFolder.h │ │ │ ├── Info.bmp │ │ │ ├── Info2.bmp │ │ │ ├── LangPage.cpp │ │ │ ├── LangPage.h │ │ │ ├── LangPage.rc │ │ │ ├── LangPageRes.h │ │ │ ├── LangUtils.cpp │ │ │ ├── LangUtils.h │ │ │ ├── LinkDialog.cpp │ │ │ ├── LinkDialog.h │ │ │ ├── LinkDialog.rc │ │ │ ├── LinkDialogRes.h │ │ │ ├── ListViewDialog.cpp │ │ │ ├── ListViewDialog.h │ │ │ ├── ListViewDialog.rc │ │ │ ├── ListViewDialogRes.h │ │ │ ├── MenuPage.cpp │ │ │ ├── MenuPage.h │ │ │ ├── MenuPage.rc │ │ │ ├── MenuPage2.rc │ │ │ ├── MenuPageRes.h │ │ │ ├── MessagesDialog.cpp │ │ │ ├── MessagesDialog.h │ │ │ ├── MessagesDialog.rc │ │ │ ├── MessagesDialogRes.h │ │ │ ├── Move.bmp │ │ │ ├── Move2.bmp │ │ │ ├── MyCom2.h │ │ │ ├── MyLoadMenu.cpp │ │ │ ├── MyLoadMenu.h │ │ │ ├── MyWindowsNew.h │ │ │ ├── NetFolder.cpp │ │ │ ├── NetFolder.h │ │ │ ├── OpenCallback.cpp │ │ │ ├── OpenCallback.h │ │ │ ├── OptionsDialog.cpp │ │ │ ├── OverwriteDialog.cpp │ │ │ ├── OverwriteDialog.h │ │ │ ├── OverwriteDialog.rc │ │ │ ├── OverwriteDialogRes.h │ │ │ ├── Panel.cpp │ │ │ ├── Panel.h │ │ │ ├── PanelCopy.cpp │ │ │ ├── PanelCrc.cpp │ │ │ ├── PanelDrag.cpp │ │ │ ├── PanelFolderChange.cpp │ │ │ ├── PanelItemOpen.cpp │ │ │ ├── PanelItems.cpp │ │ │ ├── PanelKey.cpp │ │ │ ├── PanelListNotify.cpp │ │ │ ├── PanelMenu.cpp │ │ │ ├── PanelOperations.cpp │ │ │ ├── PanelSelect.cpp │ │ │ ├── PanelSort.cpp │ │ │ ├── PanelSplitFile.cpp │ │ │ ├── PasswordDialog.cpp │ │ │ ├── PasswordDialog.h │ │ │ ├── PasswordDialog.rc │ │ │ ├── PasswordDialogRes.h │ │ │ ├── PluginInterface.h │ │ │ ├── PluginLoader.h │ │ │ ├── ProgramLocation.cpp │ │ │ ├── ProgramLocation.h │ │ │ ├── ProgressDialog.cpp │ │ │ ├── ProgressDialog.h │ │ │ ├── ProgressDialog.rc │ │ │ ├── ProgressDialog2.cpp │ │ │ ├── ProgressDialog2.h │ │ │ ├── ProgressDialog2.rc │ │ │ ├── ProgressDialog2Res.h │ │ │ ├── ProgressDialog2a.rc │ │ │ ├── ProgressDialogRes.h │ │ │ ├── PropertyName.cpp │ │ │ ├── PropertyName.h │ │ │ ├── PropertyName.rc │ │ │ ├── PropertyNameRes.h │ │ │ ├── RegistryAssociations.cpp │ │ │ ├── RegistryAssociations.h │ │ │ ├── RegistryPlugins.cpp │ │ │ ├── RegistryPlugins.h │ │ │ ├── RegistryUtils.cpp │ │ │ ├── RegistryUtils.h │ │ │ ├── RootFolder.cpp │ │ │ ├── RootFolder.h │ │ │ ├── SettingsPage.cpp │ │ │ ├── SettingsPage.h │ │ │ ├── SettingsPage.rc │ │ │ ├── SettingsPage2.rc │ │ │ ├── SettingsPageRes.h │ │ │ ├── SplitDialog.cpp │ │ │ ├── SplitDialog.h │ │ │ ├── SplitDialog.rc │ │ │ ├── SplitDialogRes.h │ │ │ ├── SplitUtils.cpp │ │ │ ├── SplitUtils.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── StringUtils.cpp │ │ │ ├── StringUtils.h │ │ │ ├── SysIconUtils.cpp │ │ │ ├── SysIconUtils.h │ │ │ ├── SystemPage.cpp │ │ │ ├── SystemPage.h │ │ │ ├── SystemPage.rc │ │ │ ├── SystemPageRes.h │ │ │ ├── Test.bmp │ │ │ ├── Test2.bmp │ │ │ ├── TextPairs.cpp │ │ │ ├── TextPairs.h │ │ │ ├── UpdateCallback100.cpp │ │ │ ├── UpdateCallback100.h │ │ │ ├── VerCtrl.cpp │ │ │ ├── ViewSettings.cpp │ │ │ ├── ViewSettings.h │ │ │ ├── makefile │ │ │ ├── resource.h │ │ │ ├── resource.rc │ │ │ ├── resourceGui.h │ │ │ └── resourceGui.rc │ │ ├── GUI │ │ │ ├── 7zG.exe.manifest │ │ │ ├── BenchmarkDialog.cpp │ │ │ ├── BenchmarkDialog.h │ │ │ ├── BenchmarkDialog.rc │ │ │ ├── BenchmarkDialogRes.h │ │ │ ├── CompressDialog.cpp │ │ │ ├── CompressDialog.h │ │ │ ├── CompressDialog.rc │ │ │ ├── CompressDialogRes.h │ │ │ ├── CompressOptionsDialog.rc │ │ │ ├── Extract.rc │ │ │ ├── ExtractDialog.cpp │ │ │ ├── ExtractDialog.h │ │ │ ├── ExtractDialog.rc │ │ │ ├── ExtractDialogRes.h │ │ │ ├── ExtractGUI.cpp │ │ │ ├── ExtractGUI.h │ │ │ ├── ExtractRes.h │ │ │ ├── FM.ico │ │ │ ├── GUI.cpp │ │ │ ├── GUI.dsp │ │ │ ├── GUI.dsw │ │ │ ├── HashGUI.cpp │ │ │ ├── HashGUI.h │ │ │ ├── StdAfx.cpp │ │ │ ├── StdAfx.h │ │ │ ├── UpdateCallbackGUI.cpp │ │ │ ├── UpdateCallbackGUI.h │ │ │ ├── UpdateCallbackGUI2.cpp │ │ │ ├── UpdateCallbackGUI2.h │ │ │ ├── UpdateGUI.cpp │ │ │ ├── UpdateGUI.h │ │ │ ├── makefile │ │ │ ├── resource.rc │ │ │ ├── resource2.h │ │ │ ├── resource2.rc │ │ │ ├── resource3.h │ │ │ └── resource3.rc │ │ └── makefile │ ├── cmpl_clang.mak │ ├── cmpl_clang_arm64.mak │ ├── cmpl_clang_x64.mak │ ├── cmpl_clang_x86.mak │ ├── cmpl_gcc.mak │ ├── cmpl_gcc_arm64.mak │ ├── cmpl_gcc_x64.mak │ ├── cmpl_gcc_x86.mak │ ├── cmpl_mac_arm64.mak │ ├── cmpl_mac_x64.mak │ ├── makefile │ ├── var_clang.mak │ ├── var_clang_arm64.mak │ ├── var_clang_x64.mak │ ├── var_clang_x86.mak │ ├── var_gcc.mak │ ├── var_gcc_arm64.mak │ ├── var_gcc_x64.mak │ ├── var_gcc_x86.mak │ ├── var_mac_arm64.mak │ ├── var_mac_x64.mak │ ├── warn_clang.mak │ ├── warn_clang_mac.mak │ └── warn_gcc.mak ├── Build.mak ├── Common │ ├── AutoPtr.h │ ├── Blake3Reg.cpp │ ├── CRC.cpp │ ├── C_FileIO.cpp │ ├── C_FileIO.h │ ├── CksumReg.cpp │ ├── ComTry.h │ ├── CommandLineParser.cpp │ ├── CommandLineParser.h │ ├── Common.h │ ├── CrcReg.cpp │ ├── Defs.h │ ├── DynLimBuf.cpp │ ├── DynLimBuf.h │ ├── DynamicBuffer.h │ ├── IntToString.cpp │ ├── IntToString.h │ ├── Lang.cpp │ ├── Lang.h │ ├── ListFileUtils.cpp │ ├── ListFileUtils.h │ ├── LzFindPrepare.cpp │ ├── Md2Reg.cpp │ ├── Md4Reg.cpp │ ├── Md5Reg.cpp │ ├── MyBuffer.h │ ├── MyBuffer2.h │ ├── MyCom.h │ ├── MyException.h │ ├── MyGuidDef.h │ ├── MyInitGuid.h │ ├── MyLinux.h │ ├── MyMap.cpp │ ├── MyMap.h │ ├── MyString.cpp │ ├── MyString.h │ ├── MyTypes.h │ ├── MyUnknown.h │ ├── MyVector.cpp │ ├── MyVector.h │ ├── MyWindows.cpp │ ├── MyWindows.h │ ├── MyXml.cpp │ ├── MyXml.h │ ├── NewHandler.cpp │ ├── NewHandler.h │ ├── Random.cpp │ ├── Random.h │ ├── Sha1Prepare.cpp │ ├── Sha1Reg.cpp │ ├── Sha256Prepare.cpp │ ├── Sha256Reg.cpp │ ├── Sha384Reg.cpp │ ├── Sha512Reg.cpp │ ├── StdAfx.h │ ├── StdInStream.cpp │ ├── StdInStream.h │ ├── StdOutStream.cpp │ ├── StdOutStream.h │ ├── StringConvert.cpp │ ├── StringConvert.h │ ├── StringToInt.cpp │ ├── StringToInt.h │ ├── TextConfig.cpp │ ├── TextConfig.h │ ├── UTFConvert.cpp │ ├── UTFConvert.h │ ├── Wildcard.cpp │ ├── Wildcard.h │ ├── XXH32Reg.cpp │ ├── XXH64Reg.cpp │ ├── XzCrc64Init.cpp │ └── XzCrc64Reg.cpp └── Windows │ ├── COM.cpp │ ├── COM.h │ ├── Clipboard.cpp │ ├── Clipboard.h │ ├── CommonDialog.cpp │ ├── CommonDialog.h │ ├── Console.cpp │ ├── Console.h │ ├── Control │ ├── ComboBox.cpp │ ├── ComboBox.h │ ├── CommandBar.h │ ├── Dialog.cpp │ ├── Dialog.h │ ├── Edit.h │ ├── ImageList.cpp │ ├── ImageList.h │ ├── ListView.cpp │ ├── ListView.h │ ├── ProgressBar.h │ ├── PropertyPage.cpp │ ├── PropertyPage.h │ ├── ReBar.h │ ├── Static.h │ ├── StatusBar.h │ ├── StdAfx.h │ ├── ToolBar.h │ ├── Trackbar.h │ ├── Window2.cpp │ └── Window2.h │ ├── DLL.cpp │ ├── DLL.h │ ├── Defs.h │ ├── ErrorMsg.cpp │ ├── ErrorMsg.h │ ├── FileDir.cpp │ ├── FileDir.h │ ├── FileFind.cpp │ ├── FileFind.h │ ├── FileIO.cpp │ ├── FileIO.h │ ├── FileLink.cpp │ ├── FileMapping.cpp │ ├── FileMapping.h │ ├── FileName.cpp │ ├── FileName.h │ ├── FileSystem.cpp │ ├── FileSystem.h │ ├── Handle.h │ ├── MemoryGlobal.cpp │ ├── MemoryGlobal.h │ ├── MemoryLock.cpp │ ├── MemoryLock.h │ ├── Menu.cpp │ ├── Menu.h │ ├── NationalTime.cpp │ ├── NationalTime.h │ ├── Net.cpp │ ├── Net.h │ ├── NtCheck.h │ ├── ProcessMessages.cpp │ ├── ProcessMessages.h │ ├── ProcessUtils.cpp │ ├── ProcessUtils.h │ ├── PropVariant.cpp │ ├── PropVariant.h │ ├── PropVariantConv.cpp │ ├── PropVariantConv.h │ ├── PropVariantUtils.cpp │ ├── PropVariantUtils.h │ ├── Registry.cpp │ ├── Registry.h │ ├── ResourceString.cpp │ ├── ResourceString.h │ ├── SecurityUtils.cpp │ ├── SecurityUtils.h │ ├── Shell.cpp │ ├── Shell.h │ ├── StdAfx.h │ ├── Synchronization.cpp │ ├── Synchronization.h │ ├── System.cpp │ ├── System.h │ ├── SystemInfo.cpp │ ├── SystemInfo.h │ ├── Thread.h │ ├── TimeUtils.cpp │ ├── TimeUtils.h │ ├── Window.cpp │ └── Window.h ├── DOC ├── 7zC.txt ├── 7zFormat.txt ├── 7zip.hhp ├── 7zip.wxs ├── License.txt ├── Methods.txt ├── copying.txt ├── lzma.txt ├── readme.txt ├── src-history.txt └── unRarLicense.txt └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/.gitignore -------------------------------------------------------------------------------- /Asm/arm/7zCrcOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/Asm/arm/7zCrcOpt.asm -------------------------------------------------------------------------------- /Asm/arm64/7zAsm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/Asm/arm64/7zAsm.S -------------------------------------------------------------------------------- /Asm/arm64/LzmaDecOpt.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/Asm/arm64/LzmaDecOpt.S -------------------------------------------------------------------------------- /Asm/x86/7zAsm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/Asm/x86/7zAsm.asm -------------------------------------------------------------------------------- /Asm/x86/7zCrcOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/Asm/x86/7zCrcOpt.asm -------------------------------------------------------------------------------- /Asm/x86/AesOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/Asm/x86/AesOpt.asm -------------------------------------------------------------------------------- /Asm/x86/LzFindOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/Asm/x86/LzFindOpt.asm -------------------------------------------------------------------------------- /Asm/x86/LzmaDecOpt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/Asm/x86/LzmaDecOpt.asm -------------------------------------------------------------------------------- /Asm/x86/Sha1Opt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/Asm/x86/Sha1Opt.asm -------------------------------------------------------------------------------- /Asm/x86/Sha256Opt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/Asm/x86/Sha256Opt.asm -------------------------------------------------------------------------------- /Asm/x86/XzCrc64Opt.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/Asm/x86/XzCrc64Opt.asm -------------------------------------------------------------------------------- /C/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7z.h -------------------------------------------------------------------------------- /C/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zAlloc.c -------------------------------------------------------------------------------- /C/7zAlloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zAlloc.h -------------------------------------------------------------------------------- /C/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zArcIn.c -------------------------------------------------------------------------------- /C/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zBuf.c -------------------------------------------------------------------------------- /C/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zBuf.h -------------------------------------------------------------------------------- /C/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zBuf2.c -------------------------------------------------------------------------------- /C/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zCrc.c -------------------------------------------------------------------------------- /C/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zCrc.h -------------------------------------------------------------------------------- /C/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zCrcOpt.c -------------------------------------------------------------------------------- /C/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zDec.c -------------------------------------------------------------------------------- /C/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zFile.c -------------------------------------------------------------------------------- /C/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zFile.h -------------------------------------------------------------------------------- /C/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zStream.c -------------------------------------------------------------------------------- /C/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zTypes.h -------------------------------------------------------------------------------- /C/7zVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zVersion.h -------------------------------------------------------------------------------- /C/7zVersion.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zVersion.rc -------------------------------------------------------------------------------- /C/7zip_gcc_c.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/7zip_gcc_c.mak -------------------------------------------------------------------------------- /C/Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Aes.c -------------------------------------------------------------------------------- /C/Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Aes.h -------------------------------------------------------------------------------- /C/AesOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/AesOpt.c -------------------------------------------------------------------------------- /C/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Alloc.c -------------------------------------------------------------------------------- /C/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Alloc.h -------------------------------------------------------------------------------- /C/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Bcj2.c -------------------------------------------------------------------------------- /C/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Bcj2.h -------------------------------------------------------------------------------- /C/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Bcj2Enc.c -------------------------------------------------------------------------------- /C/Blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Blake2.h -------------------------------------------------------------------------------- /C/Blake2s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Blake2s.c -------------------------------------------------------------------------------- /C/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Bra.c -------------------------------------------------------------------------------- /C/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Bra.h -------------------------------------------------------------------------------- /C/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Bra86.c -------------------------------------------------------------------------------- /C/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/BraIA64.c -------------------------------------------------------------------------------- /C/BwtSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/BwtSort.c -------------------------------------------------------------------------------- /C/BwtSort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/BwtSort.h -------------------------------------------------------------------------------- /C/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Compiler.h -------------------------------------------------------------------------------- /C/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/CpuArch.c -------------------------------------------------------------------------------- /C/CpuArch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/CpuArch.h -------------------------------------------------------------------------------- /C/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Delta.c -------------------------------------------------------------------------------- /C/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Delta.h -------------------------------------------------------------------------------- /C/DllSecur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/DllSecur.c -------------------------------------------------------------------------------- /C/DllSecur.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/DllSecur.h -------------------------------------------------------------------------------- /C/HuffEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/HuffEnc.c -------------------------------------------------------------------------------- /C/HuffEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/HuffEnc.h -------------------------------------------------------------------------------- /C/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/LzFind.c -------------------------------------------------------------------------------- /C/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/LzFind.h -------------------------------------------------------------------------------- /C/LzFindMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/LzFindMt.c -------------------------------------------------------------------------------- /C/LzFindMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/LzFindMt.h -------------------------------------------------------------------------------- /C/LzFindOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/LzFindOpt.c -------------------------------------------------------------------------------- /C/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/LzHash.h -------------------------------------------------------------------------------- /C/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Lzma2Dec.c -------------------------------------------------------------------------------- /C/Lzma2Dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Lzma2Dec.h -------------------------------------------------------------------------------- /C/Lzma2DecMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Lzma2DecMt.c -------------------------------------------------------------------------------- /C/Lzma2DecMt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Lzma2DecMt.h -------------------------------------------------------------------------------- /C/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Lzma2Enc.c -------------------------------------------------------------------------------- /C/Lzma2Enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Lzma2Enc.h -------------------------------------------------------------------------------- /C/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Lzma86.h -------------------------------------------------------------------------------- /C/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Lzma86Dec.c -------------------------------------------------------------------------------- /C/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Lzma86Enc.c -------------------------------------------------------------------------------- /C/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/LzmaDec.c -------------------------------------------------------------------------------- /C/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/LzmaDec.h -------------------------------------------------------------------------------- /C/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/LzmaEnc.c -------------------------------------------------------------------------------- /C/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/LzmaEnc.h -------------------------------------------------------------------------------- /C/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/LzmaLib.c -------------------------------------------------------------------------------- /C/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/LzmaLib.h -------------------------------------------------------------------------------- /C/MtCoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/MtCoder.c -------------------------------------------------------------------------------- /C/MtCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/MtCoder.h -------------------------------------------------------------------------------- /C/MtDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/MtDec.c -------------------------------------------------------------------------------- /C/MtDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/MtDec.h -------------------------------------------------------------------------------- /C/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Ppmd.h -------------------------------------------------------------------------------- /C/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Ppmd7.c -------------------------------------------------------------------------------- /C/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Ppmd7.h -------------------------------------------------------------------------------- /C/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Ppmd7Dec.c -------------------------------------------------------------------------------- /C/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Ppmd7Enc.c -------------------------------------------------------------------------------- /C/Ppmd7aDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Ppmd7aDec.c -------------------------------------------------------------------------------- /C/Ppmd8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Ppmd8.c -------------------------------------------------------------------------------- /C/Ppmd8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Ppmd8.h -------------------------------------------------------------------------------- /C/Ppmd8Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Ppmd8Dec.c -------------------------------------------------------------------------------- /C/Ppmd8Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Ppmd8Enc.c -------------------------------------------------------------------------------- /C/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Precomp.h -------------------------------------------------------------------------------- /C/RotateDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/RotateDefs.h -------------------------------------------------------------------------------- /C/Sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Sha1.c -------------------------------------------------------------------------------- /C/Sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Sha1.h -------------------------------------------------------------------------------- /C/Sha1Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Sha1Opt.c -------------------------------------------------------------------------------- /C/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Sha256.c -------------------------------------------------------------------------------- /C/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Sha256.h -------------------------------------------------------------------------------- /C/Sha256Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Sha256Opt.c -------------------------------------------------------------------------------- /C/Sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Sort.c -------------------------------------------------------------------------------- /C/Sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Sort.h -------------------------------------------------------------------------------- /C/Threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Threads.c -------------------------------------------------------------------------------- /C/Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Threads.h -------------------------------------------------------------------------------- /C/Util/7z/7z.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7z/7z.dsp -------------------------------------------------------------------------------- /C/Util/7z/7z.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7z/7z.dsw -------------------------------------------------------------------------------- /C/Util/7z/7zMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7z/7zMain.c -------------------------------------------------------------------------------- /C/Util/7z/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7z/Precomp.c -------------------------------------------------------------------------------- /C/Util/7z/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7z/Precomp.h -------------------------------------------------------------------------------- /C/Util/7z/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7z/makefile -------------------------------------------------------------------------------- /C/Util/7z/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7z/makefile.gcc -------------------------------------------------------------------------------- /C/Util/7zipInstall/7zip.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7zipInstall/7zip.ico -------------------------------------------------------------------------------- /C/Util/7zipInstall/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7zipInstall/Precomp.c -------------------------------------------------------------------------------- /C/Util/7zipInstall/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7zipInstall/Precomp.h -------------------------------------------------------------------------------- /C/Util/7zipInstall/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7zipInstall/makefile -------------------------------------------------------------------------------- /C/Util/7zipInstall/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7zipInstall/resource.h -------------------------------------------------------------------------------- /C/Util/7zipInstall/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7zipInstall/resource.rc -------------------------------------------------------------------------------- /C/Util/7zipUninstall/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7zipUninstall/Precomp.c -------------------------------------------------------------------------------- /C/Util/7zipUninstall/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7zipUninstall/Precomp.h -------------------------------------------------------------------------------- /C/Util/7zipUninstall/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/7zipUninstall/makefile -------------------------------------------------------------------------------- /C/Util/Lzma/LzmaUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/Lzma/LzmaUtil.c -------------------------------------------------------------------------------- /C/Util/Lzma/LzmaUtil.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/Lzma/LzmaUtil.dsp -------------------------------------------------------------------------------- /C/Util/Lzma/LzmaUtil.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/Lzma/LzmaUtil.dsw -------------------------------------------------------------------------------- /C/Util/Lzma/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/Lzma/makefile -------------------------------------------------------------------------------- /C/Util/Lzma/makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/Lzma/makefile.gcc -------------------------------------------------------------------------------- /C/Util/LzmaLib/LzmaLib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/LzmaLib/LzmaLib.def -------------------------------------------------------------------------------- /C/Util/LzmaLib/LzmaLib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/LzmaLib/LzmaLib.dsp -------------------------------------------------------------------------------- /C/Util/LzmaLib/LzmaLib.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/LzmaLib/LzmaLib.dsw -------------------------------------------------------------------------------- /C/Util/LzmaLib/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/LzmaLib/makefile -------------------------------------------------------------------------------- /C/Util/LzmaLib/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/LzmaLib/resource.rc -------------------------------------------------------------------------------- /C/Util/SfxSetup/Precomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/SfxSetup/Precomp.c -------------------------------------------------------------------------------- /C/Util/SfxSetup/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/SfxSetup/Precomp.h -------------------------------------------------------------------------------- /C/Util/SfxSetup/SfxSetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/SfxSetup/SfxSetup.c -------------------------------------------------------------------------------- /C/Util/SfxSetup/SfxSetup.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/SfxSetup/SfxSetup.dsp -------------------------------------------------------------------------------- /C/Util/SfxSetup/SfxSetup.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/SfxSetup/SfxSetup.dsw -------------------------------------------------------------------------------- /C/Util/SfxSetup/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/SfxSetup/makefile -------------------------------------------------------------------------------- /C/Util/SfxSetup/makefile_con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/SfxSetup/makefile_con -------------------------------------------------------------------------------- /C/Util/SfxSetup/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/SfxSetup/resource.rc -------------------------------------------------------------------------------- /C/Util/SfxSetup/setup.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Util/SfxSetup/setup.ico -------------------------------------------------------------------------------- /C/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Xz.c -------------------------------------------------------------------------------- /C/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/Xz.h -------------------------------------------------------------------------------- /C/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/XzCrc64.c -------------------------------------------------------------------------------- /C/XzCrc64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/XzCrc64.h -------------------------------------------------------------------------------- /C/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/XzCrc64Opt.c -------------------------------------------------------------------------------- /C/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/XzDec.c -------------------------------------------------------------------------------- /C/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/XzEnc.c -------------------------------------------------------------------------------- /C/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/XzEnc.h -------------------------------------------------------------------------------- /C/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/XzIn.c -------------------------------------------------------------------------------- /C/brotli/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/BUILD -------------------------------------------------------------------------------- /C/brotli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/CMakeLists.txt -------------------------------------------------------------------------------- /C/brotli/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/CONTRIBUTING.md -------------------------------------------------------------------------------- /C/brotli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/LICENSE -------------------------------------------------------------------------------- /C/brotli/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/MANIFEST.in -------------------------------------------------------------------------------- /C/brotli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/Makefile -------------------------------------------------------------------------------- /C/brotli/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/Makefile.am -------------------------------------------------------------------------------- /C/brotli/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/README -------------------------------------------------------------------------------- /C/brotli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/README.md -------------------------------------------------------------------------------- /C/brotli/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/WORKSPACE -------------------------------------------------------------------------------- /C/brotli/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/bootstrap -------------------------------------------------------------------------------- /C/brotli/c/common/constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/common/constants.c -------------------------------------------------------------------------------- /C/brotli/c/common/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/common/constants.h -------------------------------------------------------------------------------- /C/brotli/c/common/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/common/context.c -------------------------------------------------------------------------------- /C/brotli/c/common/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/common/context.h -------------------------------------------------------------------------------- /C/brotli/c/common/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/common/dictionary.c -------------------------------------------------------------------------------- /C/brotli/c/common/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/common/dictionary.h -------------------------------------------------------------------------------- /C/brotli/c/common/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/common/platform.c -------------------------------------------------------------------------------- /C/brotli/c/common/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/common/platform.h -------------------------------------------------------------------------------- /C/brotli/c/common/transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/common/transform.c -------------------------------------------------------------------------------- /C/brotli/c/common/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/common/transform.h -------------------------------------------------------------------------------- /C/brotli/c/common/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/common/version.h -------------------------------------------------------------------------------- /C/brotli/c/dec/bit_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/dec/bit_reader.c -------------------------------------------------------------------------------- /C/brotli/c/dec/bit_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/dec/bit_reader.h -------------------------------------------------------------------------------- /C/brotli/c/dec/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/dec/decode.c -------------------------------------------------------------------------------- /C/brotli/c/dec/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/dec/huffman.c -------------------------------------------------------------------------------- /C/brotli/c/dec/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/dec/huffman.h -------------------------------------------------------------------------------- /C/brotli/c/dec/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/dec/prefix.h -------------------------------------------------------------------------------- /C/brotli/c/dec/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/dec/state.c -------------------------------------------------------------------------------- /C/brotli/c/dec/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/dec/state.h -------------------------------------------------------------------------------- /C/brotli/c/enc/bit_cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/bit_cost.c -------------------------------------------------------------------------------- /C/brotli/c/enc/bit_cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/bit_cost.h -------------------------------------------------------------------------------- /C/brotli/c/enc/bit_cost_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/bit_cost_inc.h -------------------------------------------------------------------------------- /C/brotli/c/enc/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/cluster.c -------------------------------------------------------------------------------- /C/brotli/c/enc/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/cluster.h -------------------------------------------------------------------------------- /C/brotli/c/enc/cluster_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/cluster_inc.h -------------------------------------------------------------------------------- /C/brotli/c/enc/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/command.c -------------------------------------------------------------------------------- /C/brotli/c/enc/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/command.h -------------------------------------------------------------------------------- /C/brotli/c/enc/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/encode.c -------------------------------------------------------------------------------- /C/brotli/c/enc/encoder_dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/encoder_dict.c -------------------------------------------------------------------------------- /C/brotli/c/enc/encoder_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/encoder_dict.h -------------------------------------------------------------------------------- /C/brotli/c/enc/fast_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/fast_log.c -------------------------------------------------------------------------------- /C/brotli/c/enc/fast_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/fast_log.h -------------------------------------------------------------------------------- /C/brotli/c/enc/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/hash.h -------------------------------------------------------------------------------- /C/brotli/c/enc/histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/histogram.c -------------------------------------------------------------------------------- /C/brotli/c/enc/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/histogram.h -------------------------------------------------------------------------------- /C/brotli/c/enc/histogram_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/histogram_inc.h -------------------------------------------------------------------------------- /C/brotli/c/enc/literal_cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/literal_cost.c -------------------------------------------------------------------------------- /C/brotli/c/enc/literal_cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/literal_cost.h -------------------------------------------------------------------------------- /C/brotli/c/enc/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/memory.c -------------------------------------------------------------------------------- /C/brotli/c/enc/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/memory.h -------------------------------------------------------------------------------- /C/brotli/c/enc/metablock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/metablock.c -------------------------------------------------------------------------------- /C/brotli/c/enc/metablock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/metablock.h -------------------------------------------------------------------------------- /C/brotli/c/enc/metablock_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/metablock_inc.h -------------------------------------------------------------------------------- /C/brotli/c/enc/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/params.h -------------------------------------------------------------------------------- /C/brotli/c/enc/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/prefix.h -------------------------------------------------------------------------------- /C/brotli/c/enc/quality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/quality.h -------------------------------------------------------------------------------- /C/brotli/c/enc/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/ringbuffer.h -------------------------------------------------------------------------------- /C/brotli/c/enc/static_dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/static_dict.c -------------------------------------------------------------------------------- /C/brotli/c/enc/static_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/static_dict.h -------------------------------------------------------------------------------- /C/brotli/c/enc/utf8_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/utf8_util.c -------------------------------------------------------------------------------- /C/brotli/c/enc/utf8_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/utf8_util.h -------------------------------------------------------------------------------- /C/brotli/c/enc/write_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/enc/write_bits.h -------------------------------------------------------------------------------- /C/brotli/c/tools/brotli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/tools/brotli.c -------------------------------------------------------------------------------- /C/brotli/c/tools/brotli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/c/tools/brotli.md -------------------------------------------------------------------------------- /C/brotli/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/configure -------------------------------------------------------------------------------- /C/brotli/configure-cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/configure-cmake -------------------------------------------------------------------------------- /C/brotli/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/configure.ac -------------------------------------------------------------------------------- /C/brotli/docs/brotli.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/docs/brotli.1 -------------------------------------------------------------------------------- /C/brotli/docs/constants.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/docs/constants.h.3 -------------------------------------------------------------------------------- /C/brotli/docs/decode.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/docs/decode.h.3 -------------------------------------------------------------------------------- /C/brotli/docs/encode.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/docs/encode.h.3 -------------------------------------------------------------------------------- /C/brotli/docs/types.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/docs/types.h.3 -------------------------------------------------------------------------------- /C/brotli/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/premake5.lua -------------------------------------------------------------------------------- /C/brotli/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/python/Makefile -------------------------------------------------------------------------------- /C/brotli/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/python/README.md -------------------------------------------------------------------------------- /C/brotli/python/_brotli.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/python/_brotli.cc -------------------------------------------------------------------------------- /C/brotli/python/bro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/python/bro.py -------------------------------------------------------------------------------- /C/brotli/python/brotli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/python/brotli.py -------------------------------------------------------------------------------- /C/brotli/python/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C/brotli/scripts/sources.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/scripts/sources.lst -------------------------------------------------------------------------------- /C/brotli/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/setup.cfg -------------------------------------------------------------------------------- /C/brotli/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/setup.py -------------------------------------------------------------------------------- /C/brotli/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/brotli/tests/Makefile -------------------------------------------------------------------------------- /C/brotli/tests/testdata/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C/brotli/tests/testdata/empty.compressed: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /C/fast-lzma2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/COPYING -------------------------------------------------------------------------------- /C/fast-lzma2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/LICENSE -------------------------------------------------------------------------------- /C/fast-lzma2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/Makefile -------------------------------------------------------------------------------- /C/fast-lzma2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/README.md -------------------------------------------------------------------------------- /C/fast-lzma2/atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/atomic.h -------------------------------------------------------------------------------- /C/fast-lzma2/bench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/bench/Makefile -------------------------------------------------------------------------------- /C/fast-lzma2/bench/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/bench/bench.c -------------------------------------------------------------------------------- /C/fast-lzma2/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/compiler.h -------------------------------------------------------------------------------- /C/fast-lzma2/count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/count.h -------------------------------------------------------------------------------- /C/fast-lzma2/data_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/data_block.h -------------------------------------------------------------------------------- /C/fast-lzma2/dict_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/dict_buffer.c -------------------------------------------------------------------------------- /C/fast-lzma2/dict_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/dict_buffer.h -------------------------------------------------------------------------------- /C/fast-lzma2/fast-lzma2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fast-lzma2.h -------------------------------------------------------------------------------- /C/fast-lzma2/fastpos_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fastpos_table.h -------------------------------------------------------------------------------- /C/fast-lzma2/fl2_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fl2_common.c -------------------------------------------------------------------------------- /C/fast-lzma2/fl2_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fl2_compress.c -------------------------------------------------------------------------------- /C/fast-lzma2/fl2_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fl2_decompress.c -------------------------------------------------------------------------------- /C/fast-lzma2/fl2_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fl2_errors.h -------------------------------------------------------------------------------- /C/fast-lzma2/fl2_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fl2_internal.h -------------------------------------------------------------------------------- /C/fast-lzma2/fl2_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fl2_pool.c -------------------------------------------------------------------------------- /C/fast-lzma2/fl2_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fl2_pool.h -------------------------------------------------------------------------------- /C/fast-lzma2/fl2_threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fl2_threading.c -------------------------------------------------------------------------------- /C/fast-lzma2/fl2_threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fl2_threading.h -------------------------------------------------------------------------------- /C/fast-lzma2/fuzzer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fuzzer/Makefile -------------------------------------------------------------------------------- /C/fast-lzma2/fuzzer/datagen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fuzzer/datagen.c -------------------------------------------------------------------------------- /C/fast-lzma2/fuzzer/datagen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fuzzer/datagen.h -------------------------------------------------------------------------------- /C/fast-lzma2/fuzzer/fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/fuzzer/fuzzer.c -------------------------------------------------------------------------------- /C/fast-lzma2/lzma2_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/lzma2_dec.c -------------------------------------------------------------------------------- /C/fast-lzma2/lzma2_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/lzma2_dec.h -------------------------------------------------------------------------------- /C/fast-lzma2/lzma2_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/lzma2_enc.c -------------------------------------------------------------------------------- /C/fast-lzma2/lzma2_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/lzma2_enc.h -------------------------------------------------------------------------------- /C/fast-lzma2/lzma_dec_x86_64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/lzma_dec_x86_64.S -------------------------------------------------------------------------------- /C/fast-lzma2/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/mem.h -------------------------------------------------------------------------------- /C/fast-lzma2/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/platform.h -------------------------------------------------------------------------------- /C/fast-lzma2/radix_bitpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/radix_bitpack.c -------------------------------------------------------------------------------- /C/fast-lzma2/radix_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/radix_engine.h -------------------------------------------------------------------------------- /C/fast-lzma2/radix_get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/radix_get.h -------------------------------------------------------------------------------- /C/fast-lzma2/radix_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/radix_internal.h -------------------------------------------------------------------------------- /C/fast-lzma2/radix_mf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/radix_mf.c -------------------------------------------------------------------------------- /C/fast-lzma2/radix_mf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/radix_mf.h -------------------------------------------------------------------------------- /C/fast-lzma2/radix_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/radix_struct.c -------------------------------------------------------------------------------- /C/fast-lzma2/range_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/range_enc.c -------------------------------------------------------------------------------- /C/fast-lzma2/range_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/range_enc.h -------------------------------------------------------------------------------- /C/fast-lzma2/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/test/Makefile -------------------------------------------------------------------------------- /C/fast-lzma2/test/file_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/test/file_test.c -------------------------------------------------------------------------------- /C/fast-lzma2/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/util.c -------------------------------------------------------------------------------- /C/fast-lzma2/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/util.h -------------------------------------------------------------------------------- /C/fast-lzma2/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/xxhash.c -------------------------------------------------------------------------------- /C/fast-lzma2/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/fast-lzma2/xxhash.h -------------------------------------------------------------------------------- /C/hashes/README.md: -------------------------------------------------------------------------------- 1 | 2 | Taken from lib/crypto/* of samba-4.5.8.tar.gz. 3 | 4 | /TR 2018-11-15 5 | -------------------------------------------------------------------------------- /C/hashes/blake3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/hashes/blake3.c -------------------------------------------------------------------------------- /C/hashes/blake3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/hashes/blake3.h -------------------------------------------------------------------------------- /C/hashes/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/hashes/hash.h -------------------------------------------------------------------------------- /C/hashes/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/hashes/md2.c -------------------------------------------------------------------------------- /C/hashes/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/hashes/md2.h -------------------------------------------------------------------------------- /C/hashes/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/hashes/md4.c -------------------------------------------------------------------------------- /C/hashes/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/hashes/md4.h -------------------------------------------------------------------------------- /C/hashes/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/hashes/md5.c -------------------------------------------------------------------------------- /C/hashes/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/hashes/md5.h -------------------------------------------------------------------------------- /C/hashes/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/hashes/sha.h -------------------------------------------------------------------------------- /C/hashes/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/hashes/sha512.c -------------------------------------------------------------------------------- /C/lizard/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/.travis.yml -------------------------------------------------------------------------------- /C/lizard/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/LICENSE -------------------------------------------------------------------------------- /C/lizard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/Makefile -------------------------------------------------------------------------------- /C/lizard/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/NEWS -------------------------------------------------------------------------------- /C/lizard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/README.md -------------------------------------------------------------------------------- /C/lizard/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/appveyor.yml -------------------------------------------------------------------------------- /C/lizard/contrib/djgpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/contrib/djgpp/LICENSE -------------------------------------------------------------------------------- /C/lizard/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/examples/Makefile -------------------------------------------------------------------------------- /C/lizard/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/examples/README.md -------------------------------------------------------------------------------- /C/lizard/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/LICENSE -------------------------------------------------------------------------------- /C/lizard/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/Makefile -------------------------------------------------------------------------------- /C/lizard/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/README.md -------------------------------------------------------------------------------- /C/lizard/lib/dll/liblizard.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/dll/liblizard.def -------------------------------------------------------------------------------- /C/lizard/lib/entropy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/entropy/README.md -------------------------------------------------------------------------------- /C/lizard/lib/entropy/fse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/entropy/fse.h -------------------------------------------------------------------------------- /C/lizard/lib/entropy/huf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/entropy/huf.h -------------------------------------------------------------------------------- /C/lizard/lib/entropy/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/entropy/mem.h -------------------------------------------------------------------------------- /C/lizard/lib/liblizard.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/liblizard.pc.in -------------------------------------------------------------------------------- /C/lizard/lib/lizard_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/lizard_common.h -------------------------------------------------------------------------------- /C/lizard/lib/lizard_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/lizard_compress.c -------------------------------------------------------------------------------- /C/lizard/lib/lizard_compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/lizard_compress.h -------------------------------------------------------------------------------- /C/lizard/lib/lizard_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/lizard_frame.c -------------------------------------------------------------------------------- /C/lizard/lib/lizard_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/lizard_frame.h -------------------------------------------------------------------------------- /C/lizard/lib/xxhash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/xxhash/xxhash.c -------------------------------------------------------------------------------- /C/lizard/lib/xxhash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/lib/xxhash/xxhash.h -------------------------------------------------------------------------------- /C/lizard/programs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/COPYING -------------------------------------------------------------------------------- /C/lizard/programs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/Makefile -------------------------------------------------------------------------------- /C/lizard/programs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/README.md -------------------------------------------------------------------------------- /C/lizard/programs/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/bench.c -------------------------------------------------------------------------------- /C/lizard/programs/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/bench.h -------------------------------------------------------------------------------- /C/lizard/programs/datagen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/datagen.c -------------------------------------------------------------------------------- /C/lizard/programs/datagen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/datagen.h -------------------------------------------------------------------------------- /C/lizard/programs/lizard.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/lizard.1 -------------------------------------------------------------------------------- /C/lizard/programs/lizardcli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/lizardcli.c -------------------------------------------------------------------------------- /C/lizard/programs/lizardio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/lizardio.c -------------------------------------------------------------------------------- /C/lizard/programs/lizardio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/lizardio.h -------------------------------------------------------------------------------- /C/lizard/programs/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/platform.h -------------------------------------------------------------------------------- /C/lizard/programs/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/programs/util.h -------------------------------------------------------------------------------- /C/lizard/tests/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/tests/COPYING -------------------------------------------------------------------------------- /C/lizard/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/tests/Makefile -------------------------------------------------------------------------------- /C/lizard/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/tests/README.md -------------------------------------------------------------------------------- /C/lizard/tests/datagencli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/tests/datagencli.c -------------------------------------------------------------------------------- /C/lizard/tests/frametest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/tests/frametest.c -------------------------------------------------------------------------------- /C/lizard/tests/fullbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/tests/fullbench.c -------------------------------------------------------------------------------- /C/lizard/tests/fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/tests/fuzzer.c -------------------------------------------------------------------------------- /C/lizard/visual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lizard/visual/README.md -------------------------------------------------------------------------------- /C/lz4/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/.travis.yml -------------------------------------------------------------------------------- /C/lz4/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/INSTALL -------------------------------------------------------------------------------- /C/lz4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/LICENSE -------------------------------------------------------------------------------- /C/lz4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/Makefile -------------------------------------------------------------------------------- /C/lz4/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/Makefile.inc -------------------------------------------------------------------------------- /C/lz4/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/NEWS -------------------------------------------------------------------------------- /C/lz4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/README.md -------------------------------------------------------------------------------- /C/lz4/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/appveyor.yml -------------------------------------------------------------------------------- /C/lz4/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/build/README.md -------------------------------------------------------------------------------- /C/lz4/build/VS2010/lz4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/build/VS2010/lz4.sln -------------------------------------------------------------------------------- /C/lz4/build/VS2010/lz4/lz4.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/build/VS2010/lz4/lz4.rc -------------------------------------------------------------------------------- /C/lz4/build/VS2017/lz4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/build/VS2017/lz4.sln -------------------------------------------------------------------------------- /C/lz4/build/VS2017/lz4/lz4.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/build/VS2017/lz4/lz4.rc -------------------------------------------------------------------------------- /C/lz4/build/VS2022/lz4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/build/VS2022/lz4.sln -------------------------------------------------------------------------------- /C/lz4/build/cmake/lz4Config.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | include( "${CMAKE_CURRENT_LIST_DIR}/lz4Targets.cmake" ) -------------------------------------------------------------------------------- /C/lz4/build/cmake/lz4api.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/build/cmake/lz4api.map -------------------------------------------------------------------------------- /C/lz4/contrib/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/contrib/debian/changelog -------------------------------------------------------------------------------- /C/lz4/contrib/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /C/lz4/contrib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/contrib/debian/control -------------------------------------------------------------------------------- /C/lz4/contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/contrib/debian/copyright -------------------------------------------------------------------------------- /C/lz4/contrib/debian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /C/lz4/contrib/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C/lz4/contrib/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/contrib/debian/rules -------------------------------------------------------------------------------- /C/lz4/contrib/djgpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/contrib/djgpp/LICENSE -------------------------------------------------------------------------------- /C/lz4/contrib/djgpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/contrib/djgpp/Makefile -------------------------------------------------------------------------------- /C/lz4/contrib/djgpp/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/contrib/djgpp/README.MD -------------------------------------------------------------------------------- /C/lz4/contrib/meson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/contrib/meson/README.md -------------------------------------------------------------------------------- /C/lz4/contrib/snap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/contrib/snap/README.md -------------------------------------------------------------------------------- /C/lz4/doc/lz4_Block_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/doc/lz4_Block_format.md -------------------------------------------------------------------------------- /C/lz4/doc/lz4_Frame_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/doc/lz4_Frame_format.md -------------------------------------------------------------------------------- /C/lz4/doc/lz4_manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/doc/lz4_manual.html -------------------------------------------------------------------------------- /C/lz4/doc/lz4frame_manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/doc/lz4frame_manual.html -------------------------------------------------------------------------------- /C/lz4/examples/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/examples/COPYING -------------------------------------------------------------------------------- /C/lz4/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/examples/Makefile -------------------------------------------------------------------------------- /C/lz4/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/examples/README.md -------------------------------------------------------------------------------- /C/lz4/examples/fileCompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/examples/fileCompress.c -------------------------------------------------------------------------------- /C/lz4/examples/frameCompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/examples/frameCompress.c -------------------------------------------------------------------------------- /C/lz4/examples/printVersion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/examples/printVersion.c -------------------------------------------------------------------------------- /C/lz4/examples/simple_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/examples/simple_buffer.c -------------------------------------------------------------------------------- /C/lz4/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/LICENSE -------------------------------------------------------------------------------- /C/lz4/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/Makefile -------------------------------------------------------------------------------- /C/lz4/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/README.md -------------------------------------------------------------------------------- /C/lz4/lib/dll/example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/dll/example/Makefile -------------------------------------------------------------------------------- /C/lz4/lib/liblz4-dll.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/liblz4-dll.rc.in -------------------------------------------------------------------------------- /C/lz4/lib/liblz4.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/liblz4.pc.in -------------------------------------------------------------------------------- /C/lz4/lib/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/lz4.c -------------------------------------------------------------------------------- /C/lz4/lib/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/lz4.h -------------------------------------------------------------------------------- /C/lz4/lib/lz4file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/lz4file.c -------------------------------------------------------------------------------- /C/lz4/lib/lz4file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/lz4file.h -------------------------------------------------------------------------------- /C/lz4/lib/lz4frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/lz4frame.c -------------------------------------------------------------------------------- /C/lz4/lib/lz4frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/lz4frame.h -------------------------------------------------------------------------------- /C/lz4/lib/lz4frame_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/lz4frame_static.h -------------------------------------------------------------------------------- /C/lz4/lib/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/lz4hc.c -------------------------------------------------------------------------------- /C/lz4/lib/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/lz4hc.h -------------------------------------------------------------------------------- /C/lz4/lib/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/xxhash.c -------------------------------------------------------------------------------- /C/lz4/lib/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/lib/xxhash.h -------------------------------------------------------------------------------- /C/lz4/ossfuzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/ossfuzz/Makefile -------------------------------------------------------------------------------- /C/lz4/ossfuzz/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/ossfuzz/fuzz.h -------------------------------------------------------------------------------- /C/lz4/ossfuzz/fuzz_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/ossfuzz/fuzz_helpers.h -------------------------------------------------------------------------------- /C/lz4/ossfuzz/lz4_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/ossfuzz/lz4_helpers.c -------------------------------------------------------------------------------- /C/lz4/ossfuzz/lz4_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/ossfuzz/lz4_helpers.h -------------------------------------------------------------------------------- /C/lz4/ossfuzz/ossfuzz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/ossfuzz/ossfuzz.sh -------------------------------------------------------------------------------- /C/lz4/ossfuzz/travisoss.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/ossfuzz/travisoss.sh -------------------------------------------------------------------------------- /C/lz4/programs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/COPYING -------------------------------------------------------------------------------- /C/lz4/programs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/Makefile -------------------------------------------------------------------------------- /C/lz4/programs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/README.md -------------------------------------------------------------------------------- /C/lz4/programs/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/bench.c -------------------------------------------------------------------------------- /C/lz4/programs/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/bench.h -------------------------------------------------------------------------------- /C/lz4/programs/datagen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/datagen.c -------------------------------------------------------------------------------- /C/lz4/programs/datagen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/datagen.h -------------------------------------------------------------------------------- /C/lz4/programs/lz4-exe.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/lz4-exe.rc.in -------------------------------------------------------------------------------- /C/lz4/programs/lz4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/lz4.1 -------------------------------------------------------------------------------- /C/lz4/programs/lz4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/lz4.1.md -------------------------------------------------------------------------------- /C/lz4/programs/lz4cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/lz4cli.c -------------------------------------------------------------------------------- /C/lz4/programs/lz4io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/lz4io.c -------------------------------------------------------------------------------- /C/lz4/programs/lz4io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/lz4io.h -------------------------------------------------------------------------------- /C/lz4/programs/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/platform.h -------------------------------------------------------------------------------- /C/lz4/programs/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/programs/util.h -------------------------------------------------------------------------------- /C/lz4/tests/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/COPYING -------------------------------------------------------------------------------- /C/lz4/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/Makefile -------------------------------------------------------------------------------- /C/lz4/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/README.md -------------------------------------------------------------------------------- /C/lz4/tests/abiTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/abiTest.c -------------------------------------------------------------------------------- /C/lz4/tests/checkFrame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/checkFrame.c -------------------------------------------------------------------------------- /C/lz4/tests/checkTag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/checkTag.c -------------------------------------------------------------------------------- /C/lz4/tests/datagencli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/datagencli.c -------------------------------------------------------------------------------- /C/lz4/tests/frametest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/frametest.c -------------------------------------------------------------------------------- /C/lz4/tests/freestanding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/freestanding.c -------------------------------------------------------------------------------- /C/lz4/tests/fullbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/fullbench.c -------------------------------------------------------------------------------- /C/lz4/tests/fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/fuzzer.c -------------------------------------------------------------------------------- /C/lz4/tests/roundTripTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/roundTripTest.c -------------------------------------------------------------------------------- /C/lz4/tests/test-lz4-abi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/test-lz4-abi.py -------------------------------------------------------------------------------- /C/lz4/tests/test-lz4-basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/test-lz4-basic.sh -------------------------------------------------------------------------------- /C/lz4/tests/test-lz4-dict.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/test-lz4-dict.sh -------------------------------------------------------------------------------- /C/lz4/tests/test-lz4-list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/test-lz4-list.py -------------------------------------------------------------------------------- /C/lz4/tests/test-lz4-sparse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/test-lz4-sparse.sh -------------------------------------------------------------------------------- /C/lz4/tests/test-lz4-speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/test-lz4-speed.py -------------------------------------------------------------------------------- /C/lz4/tests/test_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/test_install.sh -------------------------------------------------------------------------------- /C/lz4/tests/unicode_lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz4/tests/unicode_lint.sh -------------------------------------------------------------------------------- /C/lz5/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/.travis.yml -------------------------------------------------------------------------------- /C/lz5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/Makefile -------------------------------------------------------------------------------- /C/lz5/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/NEWS -------------------------------------------------------------------------------- /C/lz5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/README.md -------------------------------------------------------------------------------- /C/lz5/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/appveyor.yml -------------------------------------------------------------------------------- /C/lz5/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/LICENSE -------------------------------------------------------------------------------- /C/lz5/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/Makefile -------------------------------------------------------------------------------- /C/lz5/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/README.md -------------------------------------------------------------------------------- /C/lz5/lib/liblz5.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/liblz5.pc.in -------------------------------------------------------------------------------- /C/lz5/lib/lz5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/lz5.c -------------------------------------------------------------------------------- /C/lz5/lib/lz5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/lz5.h -------------------------------------------------------------------------------- /C/lz5/lib/lz5common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/lz5common.h -------------------------------------------------------------------------------- /C/lz5/lib/lz5frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/lz5frame.c -------------------------------------------------------------------------------- /C/lz5/lib/lz5frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/lz5frame.h -------------------------------------------------------------------------------- /C/lz5/lib/lz5frame_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/lz5frame_static.h -------------------------------------------------------------------------------- /C/lz5/lib/lz5hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/lz5hc.c -------------------------------------------------------------------------------- /C/lz5/lib/lz5hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/lz5hc.h -------------------------------------------------------------------------------- /C/lz5/lib/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/mem.h -------------------------------------------------------------------------------- /C/lz5/lib/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/xxhash.c -------------------------------------------------------------------------------- /C/lz5/lib/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lib/xxhash.h -------------------------------------------------------------------------------- /C/lz5/lz5_Block_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lz5_Block_format.md -------------------------------------------------------------------------------- /C/lz5/lz5_Frame_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/lz5_Frame_format.md -------------------------------------------------------------------------------- /C/lz5/programs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/COPYING -------------------------------------------------------------------------------- /C/lz5/programs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/Makefile -------------------------------------------------------------------------------- /C/lz5/programs/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/bench.c -------------------------------------------------------------------------------- /C/lz5/programs/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/bench.h -------------------------------------------------------------------------------- /C/lz5/programs/datagen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/datagen.c -------------------------------------------------------------------------------- /C/lz5/programs/datagen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/datagen.h -------------------------------------------------------------------------------- /C/lz5/programs/datagencli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/datagencli.c -------------------------------------------------------------------------------- /C/lz5/programs/frametest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/frametest.c -------------------------------------------------------------------------------- /C/lz5/programs/fullbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/fullbench.c -------------------------------------------------------------------------------- /C/lz5/programs/lz5.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/lz5.1 -------------------------------------------------------------------------------- /C/lz5/programs/lz5cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/lz5cli.c -------------------------------------------------------------------------------- /C/lz5/programs/lz5io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/lz5io.c -------------------------------------------------------------------------------- /C/lz5/programs/lz5io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/programs/lz5io.h -------------------------------------------------------------------------------- /C/lz5/projects/VS2010/lz5.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lz5/projects/VS2010/lz5.sln -------------------------------------------------------------------------------- /C/lzham_codec/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lzham_codec/CMakeLists.txt -------------------------------------------------------------------------------- /C/lzham_codec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lzham_codec/LICENSE -------------------------------------------------------------------------------- /C/lzham_codec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lzham_codec/README.md -------------------------------------------------------------------------------- /C/lzham_codec/include/lzham.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lzham_codec/include/lzham.h -------------------------------------------------------------------------------- /C/lzham_codec/include/zlib.h: -------------------------------------------------------------------------------- 1 | #define LZHAM_DEFINE_ZLIB_API 2 | #include "lzham.h" -------------------------------------------------------------------------------- /C/lzham_codec/lzham.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/lzham_codec/lzham.sln -------------------------------------------------------------------------------- /C/var_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/var_clang.mak -------------------------------------------------------------------------------- /C/var_clang_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/var_clang_arm64.mak -------------------------------------------------------------------------------- /C/var_clang_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/var_clang_x64.mak -------------------------------------------------------------------------------- /C/var_clang_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/var_clang_x86.mak -------------------------------------------------------------------------------- /C/var_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/var_gcc.mak -------------------------------------------------------------------------------- /C/var_gcc_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/var_gcc_arm64.mak -------------------------------------------------------------------------------- /C/var_gcc_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/var_gcc_x64.mak -------------------------------------------------------------------------------- /C/var_gcc_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/var_gcc_x86.mak -------------------------------------------------------------------------------- /C/var_mac_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/var_mac_arm64.mak -------------------------------------------------------------------------------- /C/var_mac_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/var_mac_x64.mak -------------------------------------------------------------------------------- /C/warn_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/warn_clang.mak -------------------------------------------------------------------------------- /C/warn_clang_mac.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/warn_clang_mac.mak -------------------------------------------------------------------------------- /C/warn_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/warn_gcc.mak -------------------------------------------------------------------------------- /C/zstd/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/.buckconfig -------------------------------------------------------------------------------- /C/zstd/.buckversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/.buckversion -------------------------------------------------------------------------------- /C/zstd/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/.circleci/config.yml -------------------------------------------------------------------------------- /C/zstd/.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/.cirrus.yml -------------------------------------------------------------------------------- /C/zstd/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/.travis.yml -------------------------------------------------------------------------------- /C/zstd/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/CHANGELOG -------------------------------------------------------------------------------- /C/zstd/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /C/zstd/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/CONTRIBUTING.md -------------------------------------------------------------------------------- /C/zstd/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/COPYING -------------------------------------------------------------------------------- /C/zstd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/LICENSE -------------------------------------------------------------------------------- /C/zstd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/Makefile -------------------------------------------------------------------------------- /C/zstd/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/Package.swift -------------------------------------------------------------------------------- /C/zstd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/README.md -------------------------------------------------------------------------------- /C/zstd/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/TESTING.md -------------------------------------------------------------------------------- /C/zstd/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/appveyor.yml -------------------------------------------------------------------------------- /C/zstd/build/LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C/zstd/build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/build/README.md -------------------------------------------------------------------------------- /C/zstd/build/VS2008/zstd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/build/VS2008/zstd.sln -------------------------------------------------------------------------------- /C/zstd/build/VS2010/zstd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/build/VS2010/zstd.sln -------------------------------------------------------------------------------- /C/zstd/build/cmake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/build/cmake/README.md -------------------------------------------------------------------------------- /C/zstd/build/cmake/zstdConfig.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/zstdTargets.cmake") 2 | -------------------------------------------------------------------------------- /C/zstd/build/meson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/build/meson/README.md -------------------------------------------------------------------------------- /C/zstd/build/meson/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/build/meson/meson.build -------------------------------------------------------------------------------- /C/zstd/contrib/VS2005/zstd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/contrib/VS2005/zstd.sln -------------------------------------------------------------------------------- /C/zstd/contrib/cleanTabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/contrib/cleanTabs -------------------------------------------------------------------------------- /C/zstd/contrib/pzstd/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/contrib/pzstd/BUCK -------------------------------------------------------------------------------- /C/zstd/contrib/pzstd/Logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/contrib/pzstd/Logging.h -------------------------------------------------------------------------------- /C/zstd/contrib/pzstd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/contrib/pzstd/Makefile -------------------------------------------------------------------------------- /C/zstd/contrib/pzstd/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/contrib/pzstd/Options.h -------------------------------------------------------------------------------- /C/zstd/contrib/pzstd/Pzstd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/contrib/pzstd/Pzstd.cpp -------------------------------------------------------------------------------- /C/zstd/contrib/pzstd/Pzstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/contrib/pzstd/Pzstd.h -------------------------------------------------------------------------------- /C/zstd/contrib/pzstd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/contrib/pzstd/README.md -------------------------------------------------------------------------------- /C/zstd/contrib/pzstd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/contrib/pzstd/main.cpp -------------------------------------------------------------------------------- /C/zstd/contrib/pzstd/test/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/contrib/pzstd/test/BUCK -------------------------------------------------------------------------------- /C/zstd/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/doc/README.md -------------------------------------------------------------------------------- /C/zstd/doc/images/CSpeed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/doc/images/CSpeed2.png -------------------------------------------------------------------------------- /C/zstd/doc/images/DCspeed5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/doc/images/DCspeed5.png -------------------------------------------------------------------------------- /C/zstd/doc/images/DSpeed3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/doc/images/DSpeed3.png -------------------------------------------------------------------------------- /C/zstd/doc/images/dict-cr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/doc/images/dict-cr.png -------------------------------------------------------------------------------- /C/zstd/doc/images/dict-cs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/doc/images/dict-cs.png -------------------------------------------------------------------------------- /C/zstd/doc/images/dict-ds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/doc/images/dict-ds.png -------------------------------------------------------------------------------- /C/zstd/doc/zstd_manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/doc/zstd_manual.html -------------------------------------------------------------------------------- /C/zstd/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/examples/Makefile -------------------------------------------------------------------------------- /C/zstd/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/examples/README.md -------------------------------------------------------------------------------- /C/zstd/examples/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/examples/common.h -------------------------------------------------------------------------------- /C/zstd/lib/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/BUCK -------------------------------------------------------------------------------- /C/zstd/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/Makefile -------------------------------------------------------------------------------- /C/zstd/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/README.md -------------------------------------------------------------------------------- /C/zstd/lib/common/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/bitstream.h -------------------------------------------------------------------------------- /C/zstd/lib/common/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/compiler.h -------------------------------------------------------------------------------- /C/zstd/lib/common/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/cpu.h -------------------------------------------------------------------------------- /C/zstd/lib/common/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/debug.c -------------------------------------------------------------------------------- /C/zstd/lib/common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/debug.h -------------------------------------------------------------------------------- /C/zstd/lib/common/fse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/fse.h -------------------------------------------------------------------------------- /C/zstd/lib/common/huf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/huf.h -------------------------------------------------------------------------------- /C/zstd/lib/common/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/mem.h -------------------------------------------------------------------------------- /C/zstd/lib/common/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/pool.c -------------------------------------------------------------------------------- /C/zstd/lib/common/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/pool.h -------------------------------------------------------------------------------- /C/zstd/lib/common/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/threading.c -------------------------------------------------------------------------------- /C/zstd/lib/common/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/threading.h -------------------------------------------------------------------------------- /C/zstd/lib/common/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/xxhash.c -------------------------------------------------------------------------------- /C/zstd/lib/common/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/xxhash.h -------------------------------------------------------------------------------- /C/zstd/lib/common/zstd_deps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/zstd_deps.h -------------------------------------------------------------------------------- /C/zstd/lib/common/zstd_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/common/zstd_trace.h -------------------------------------------------------------------------------- /C/zstd/lib/compress/clevels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/compress/clevels.h -------------------------------------------------------------------------------- /C/zstd/lib/compress/hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/compress/hist.c -------------------------------------------------------------------------------- /C/zstd/lib/compress/hist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/compress/hist.h -------------------------------------------------------------------------------- /C/zstd/lib/compress/zstd_ldm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/compress/zstd_ldm.c -------------------------------------------------------------------------------- /C/zstd/lib/compress/zstd_ldm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/compress/zstd_ldm.h -------------------------------------------------------------------------------- /C/zstd/lib/compress/zstd_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/compress/zstd_opt.c -------------------------------------------------------------------------------- /C/zstd/lib/compress/zstd_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/compress/zstd_opt.h -------------------------------------------------------------------------------- /C/zstd/lib/deprecated/zbuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/deprecated/zbuff.h -------------------------------------------------------------------------------- /C/zstd/lib/dictBuilder/cover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/dictBuilder/cover.c -------------------------------------------------------------------------------- /C/zstd/lib/dictBuilder/cover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/dictBuilder/cover.h -------------------------------------------------------------------------------- /C/zstd/lib/dictBuilder/zdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/dictBuilder/zdict.c -------------------------------------------------------------------------------- /C/zstd/lib/legacy/zstd_v01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/legacy/zstd_v01.c -------------------------------------------------------------------------------- /C/zstd/lib/legacy/zstd_v01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/legacy/zstd_v01.h -------------------------------------------------------------------------------- /C/zstd/lib/legacy/zstd_v02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/legacy/zstd_v02.c -------------------------------------------------------------------------------- /C/zstd/lib/legacy/zstd_v02.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/legacy/zstd_v02.h -------------------------------------------------------------------------------- /C/zstd/lib/legacy/zstd_v03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/legacy/zstd_v03.c -------------------------------------------------------------------------------- /C/zstd/lib/legacy/zstd_v03.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/legacy/zstd_v03.h -------------------------------------------------------------------------------- /C/zstd/lib/legacy/zstd_v04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/legacy/zstd_v04.c -------------------------------------------------------------------------------- /C/zstd/lib/legacy/zstd_v04.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/legacy/zstd_v04.h -------------------------------------------------------------------------------- /C/zstd/lib/legacy/zstd_v05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/legacy/zstd_v05.c -------------------------------------------------------------------------------- /C/zstd/lib/legacy/zstd_v05.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/legacy/zstd_v05.h -------------------------------------------------------------------------------- /C/zstd/lib/legacy/zstd_v06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/legacy/zstd_v06.c -------------------------------------------------------------------------------- /C/zstd/lib/libzstd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/libzstd.mk -------------------------------------------------------------------------------- /C/zstd/lib/libzstd.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/libzstd.pc.in -------------------------------------------------------------------------------- /C/zstd/lib/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/module.modulemap -------------------------------------------------------------------------------- /C/zstd/lib/zdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/zdict.h -------------------------------------------------------------------------------- /C/zstd/lib/zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/zstd.h -------------------------------------------------------------------------------- /C/zstd/lib/zstd_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/lib/zstd_errors.h -------------------------------------------------------------------------------- /C/zstd/programs/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/BUCK -------------------------------------------------------------------------------- /C/zstd/programs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/Makefile -------------------------------------------------------------------------------- /C/zstd/programs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/README.md -------------------------------------------------------------------------------- /C/zstd/programs/benchfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/benchfn.c -------------------------------------------------------------------------------- /C/zstd/programs/benchfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/benchfn.h -------------------------------------------------------------------------------- /C/zstd/programs/benchzstd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/benchzstd.c -------------------------------------------------------------------------------- /C/zstd/programs/benchzstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/benchzstd.h -------------------------------------------------------------------------------- /C/zstd/programs/datagen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/datagen.c -------------------------------------------------------------------------------- /C/zstd/programs/datagen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/datagen.h -------------------------------------------------------------------------------- /C/zstd/programs/dibio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/dibio.c -------------------------------------------------------------------------------- /C/zstd/programs/dibio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/dibio.h -------------------------------------------------------------------------------- /C/zstd/programs/fileio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/fileio.c -------------------------------------------------------------------------------- /C/zstd/programs/fileio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/fileio.h -------------------------------------------------------------------------------- /C/zstd/programs/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/platform.h -------------------------------------------------------------------------------- /C/zstd/programs/timefn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/timefn.c -------------------------------------------------------------------------------- /C/zstd/programs/timefn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/timefn.h -------------------------------------------------------------------------------- /C/zstd/programs/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/util.c -------------------------------------------------------------------------------- /C/zstd/programs/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/util.h -------------------------------------------------------------------------------- /C/zstd/programs/zstd.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/zstd.1 -------------------------------------------------------------------------------- /C/zstd/programs/zstd.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/zstd.1.md -------------------------------------------------------------------------------- /C/zstd/programs/zstdcli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/zstdcli.c -------------------------------------------------------------------------------- /C/zstd/programs/zstdgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/zstdgrep -------------------------------------------------------------------------------- /C/zstd/programs/zstdgrep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/zstdgrep.1 -------------------------------------------------------------------------------- /C/zstd/programs/zstdless: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | zstdcat "$@" | less 3 | -------------------------------------------------------------------------------- /C/zstd/programs/zstdless.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/programs/zstdless.1 -------------------------------------------------------------------------------- /C/zstd/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/Makefile -------------------------------------------------------------------------------- /C/zstd/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/README.md -------------------------------------------------------------------------------- /C/zstd/tests/bigdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/bigdict.c -------------------------------------------------------------------------------- /C/zstd/tests/checkTag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/checkTag.c -------------------------------------------------------------------------------- /C/zstd/tests/datagencli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/datagencli.c -------------------------------------------------------------------------------- /C/zstd/tests/decodecorpus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/decodecorpus.c -------------------------------------------------------------------------------- /C/zstd/tests/fullbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/fullbench.c -------------------------------------------------------------------------------- /C/zstd/tests/fuzz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/fuzz/Makefile -------------------------------------------------------------------------------- /C/zstd/tests/fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/fuzz/README.md -------------------------------------------------------------------------------- /C/zstd/tests/fuzz/fuzz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/fuzz/fuzz.h -------------------------------------------------------------------------------- /C/zstd/tests/fuzz/fuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/fuzz/fuzz.py -------------------------------------------------------------------------------- /C/zstd/tests/fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/fuzzer.c -------------------------------------------------------------------------------- /C/zstd/tests/gzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/gzip/Makefile -------------------------------------------------------------------------------- /C/zstd/tests/gzip/hufts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/gzip/hufts.sh -------------------------------------------------------------------------------- /C/zstd/tests/gzip/init.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/gzip/init.cfg -------------------------------------------------------------------------------- /C/zstd/tests/gzip/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/gzip/init.sh -------------------------------------------------------------------------------- /C/zstd/tests/gzip/keep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/gzip/keep.sh -------------------------------------------------------------------------------- /C/zstd/tests/gzip/list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/gzip/list.sh -------------------------------------------------------------------------------- /C/zstd/tests/gzip/mixed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/gzip/mixed.sh -------------------------------------------------------------------------------- /C/zstd/tests/gzip/stdin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/gzip/stdin.sh -------------------------------------------------------------------------------- /C/zstd/tests/gzip/zdiff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/gzip/zdiff.sh -------------------------------------------------------------------------------- /C/zstd/tests/gzip/znew-k.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/gzip/znew-k.sh -------------------------------------------------------------------------------- /C/zstd/tests/legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/legacy.c -------------------------------------------------------------------------------- /C/zstd/tests/longmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/longmatch.c -------------------------------------------------------------------------------- /C/zstd/tests/paramgrill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/paramgrill.c -------------------------------------------------------------------------------- /C/zstd/tests/playTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/playTests.sh -------------------------------------------------------------------------------- /C/zstd/tests/poolTests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/poolTests.c -------------------------------------------------------------------------------- /C/zstd/tests/rateLimiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/rateLimiter.py -------------------------------------------------------------------------------- /C/zstd/tests/seqgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/seqgen.c -------------------------------------------------------------------------------- /C/zstd/tests/seqgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/seqgen.h -------------------------------------------------------------------------------- /C/zstd/tests/zstreamtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/tests/zstreamtest.c -------------------------------------------------------------------------------- /C/zstd/zlibWrapper/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/zlibWrapper/BUCK -------------------------------------------------------------------------------- /C/zstd/zlibWrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/zlibWrapper/Makefile -------------------------------------------------------------------------------- /C/zstd/zlibWrapper/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/zlibWrapper/gzguts.h -------------------------------------------------------------------------------- /C/zstd/zlibWrapper/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/zlibWrapper/gzlib.c -------------------------------------------------------------------------------- /C/zstd/zlibWrapper/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstd/zlibWrapper/gzread.c -------------------------------------------------------------------------------- /C/zstdmt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/LICENSE -------------------------------------------------------------------------------- /C/zstdmt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/README.md -------------------------------------------------------------------------------- /C/zstdmt/brotli-mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/brotli-mt.h -------------------------------------------------------------------------------- /C/zstdmt/brotli-mt_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/brotli-mt_common.c -------------------------------------------------------------------------------- /C/zstdmt/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/list.h -------------------------------------------------------------------------------- /C/zstdmt/lizard-mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/lizard-mt.h -------------------------------------------------------------------------------- /C/zstdmt/lizard-mt_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/lizard-mt_common.c -------------------------------------------------------------------------------- /C/zstdmt/lz4-mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/lz4-mt.h -------------------------------------------------------------------------------- /C/zstdmt/lz4-mt_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/lz4-mt_common.c -------------------------------------------------------------------------------- /C/zstdmt/lz4-mt_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/lz4-mt_compress.c -------------------------------------------------------------------------------- /C/zstdmt/lz5-mt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/lz5-mt.h -------------------------------------------------------------------------------- /C/zstdmt/lz5-mt_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/lz5-mt_common.c -------------------------------------------------------------------------------- /C/zstdmt/lz5-mt_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/lz5-mt_compress.c -------------------------------------------------------------------------------- /C/zstdmt/memmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/memmt.h -------------------------------------------------------------------------------- /C/zstdmt/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/C/zstdmt/threading.h -------------------------------------------------------------------------------- /CPP/7zip/7zip.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/7zip.mak -------------------------------------------------------------------------------- /CPP/7zip/7zip_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/7zip_gcc.mak -------------------------------------------------------------------------------- /CPP/7zip/Aes.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Aes.mak -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7z.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Archive/7z/7z.dsp -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7z.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Archive/7z/7z.dsw -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zCompressionMode.cpp: -------------------------------------------------------------------------------- 1 | // CompressionMethod.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Archive/7z/7zIn.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/7z/7zOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Archive/7z/7zOut.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/Common/ParseProperties.cpp: -------------------------------------------------------------------------------- 1 | // ParseProperties.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Archive/DeflateProps.cpp: -------------------------------------------------------------------------------- 1 | // DeflateProps.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Archive/IArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Archive/IArchive.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Archive/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Archive/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Archive/makefile -------------------------------------------------------------------------------- /CPP/7zip/Asm.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Asm.mak -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Alone/afxres.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Fm/FM.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Bundles/Fm/FM.dsp -------------------------------------------------------------------------------- /CPP/7zip/Bundles/Fm/FM.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Bundles/Fm/FM.dsw -------------------------------------------------------------------------------- /CPP/7zip/Bundles/SFXWin/resource.h: -------------------------------------------------------------------------------- 1 | #define IDI_ICON 1 2 | -------------------------------------------------------------------------------- /CPP/7zip/Bundles/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Bundles/makefile -------------------------------------------------------------------------------- /CPP/7zip/Common/CWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Common/CWrappers.h -------------------------------------------------------------------------------- /CPP/7zip/Common/InBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Common/InBuffer.h -------------------------------------------------------------------------------- /CPP/7zip/Common/LockedStream.cpp: -------------------------------------------------------------------------------- 1 | // LockedStream.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Common/MemBlocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Common/MemBlocks.h -------------------------------------------------------------------------------- /CPP/7zip/Common/MethodId.cpp: -------------------------------------------------------------------------------- 1 | // MethodId.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Common/MethodId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Common/MethodId.h -------------------------------------------------------------------------------- /CPP/7zip/Common/OutBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Common/OutBuffer.h -------------------------------------------------------------------------------- /CPP/7zip/Common/PropId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Common/PropId.cpp -------------------------------------------------------------------------------- /CPP/7zip/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Common/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Codec.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Compress/Codec.def -------------------------------------------------------------------------------- /CPP/7zip/Compress/ImplodeHuffmanDecoder.cpp: -------------------------------------------------------------------------------- 1 | // ImplodeHuffmanDecoder.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/Compress/Lzx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Compress/Lzx.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Mtf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Compress/Mtf8.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/PpmdZip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Compress/PpmdZip.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/Rar3Vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Compress/Rar3Vm.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Compress/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Compress/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Compress/makefile -------------------------------------------------------------------------------- /CPP/7zip/Crc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crc.mak -------------------------------------------------------------------------------- /CPP/7zip/Crc64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crc64.mak -------------------------------------------------------------------------------- /CPP/7zip/Crypto/7zAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/7zAes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/7zAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/7zAes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Codec.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/Codec.def -------------------------------------------------------------------------------- /CPP/7zip/Crypto/HmacSha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/HmacSha1.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/MyAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/MyAes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/MyAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/MyAes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/RandGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/RandGen.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/RandGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/RandGen.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Rar5Aes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/Rar5Aes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Rar5Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/Rar5Aes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/RarAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/RarAes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/RarAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/RarAes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/Sha1Cls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/Sha1Cls.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/WzAes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/WzAes.cpp -------------------------------------------------------------------------------- /CPP/7zip/Crypto/WzAes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/WzAes.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/ZipCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/ZipCrypto.h -------------------------------------------------------------------------------- /CPP/7zip/Crypto/ZipStrong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Crypto/ZipStrong.h -------------------------------------------------------------------------------- /CPP/7zip/GuiCommon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/GuiCommon.rc -------------------------------------------------------------------------------- /CPP/7zip/Guid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Guid.txt -------------------------------------------------------------------------------- /CPP/7zip/ICoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/ICoder.h -------------------------------------------------------------------------------- /CPP/7zip/IDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/IDecl.h -------------------------------------------------------------------------------- /CPP/7zip/IPassword.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/IPassword.h -------------------------------------------------------------------------------- /CPP/7zip/IProgress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/IProgress.h -------------------------------------------------------------------------------- /CPP/7zip/IStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/IStream.h -------------------------------------------------------------------------------- /CPP/7zip/LzFindOpt.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/LzFindOpt.mak -------------------------------------------------------------------------------- /CPP/7zip/LzmaDec.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/LzmaDec.mak -------------------------------------------------------------------------------- /CPP/7zip/LzmaDec_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/LzmaDec_gcc.mak -------------------------------------------------------------------------------- /CPP/7zip/MyVersion.h: -------------------------------------------------------------------------------- 1 | #define USE_COPYRIGHT_CR 2 | #include "../../C/7zVersion.h" 3 | -------------------------------------------------------------------------------- /CPP/7zip/MyVersionInfo.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/MyVersionInfo.rc -------------------------------------------------------------------------------- /CPP/7zip/PropID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/PropID.h -------------------------------------------------------------------------------- /CPP/7zip/Sha1.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Sha1.mak -------------------------------------------------------------------------------- /CPP/7zip/Sha256.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/Sha256.mak -------------------------------------------------------------------------------- /CPP/7zip/SubBuild.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/SubBuild.mak -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/Agent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Agent/Agent.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/Agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Agent/Agent.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Agent/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Agent/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Common/Bench.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Common/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Common/Update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Common/Update.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Console/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Console/List.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Far.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/Far.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Far.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/Far.def -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Far.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/Far.dsp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Far.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/Far.dsw -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/FarPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/FarPlugin.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/FarUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/FarUtils.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/Messages.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/Plugin.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/Plugin.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/StdAfx.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/Far/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/Far/resource.rc -------------------------------------------------------------------------------- /CPP/7zip/UI/FileManager/ProgramLocation.cpp: -------------------------------------------------------------------------------- 1 | // ProgramLocation.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/Extract.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/Extract.rc -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/FM.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/FM.ico -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/GUI.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/GUI.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/GUI.dsp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/GUI.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/GUI.dsw -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/HashGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/HashGUI.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/HashGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/HashGUI.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/StdAfx.cpp -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/StdAfx.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/UpdateGUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/UpdateGUI.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/makefile -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/resource.rc -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/resource2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/resource2.h -------------------------------------------------------------------------------- /CPP/7zip/UI/GUI/resource3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/GUI/resource3.h -------------------------------------------------------------------------------- /CPP/7zip/UI/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/UI/makefile -------------------------------------------------------------------------------- /CPP/7zip/cmpl_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/cmpl_clang.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_clang_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/cmpl_clang_x64.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_clang_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/cmpl_clang_x86.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/cmpl_gcc.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_gcc_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/cmpl_gcc_arm64.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_gcc_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/cmpl_gcc_x64.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_gcc_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/cmpl_gcc_x86.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_mac_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/cmpl_mac_arm64.mak -------------------------------------------------------------------------------- /CPP/7zip/cmpl_mac_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/cmpl_mac_x64.mak -------------------------------------------------------------------------------- /CPP/7zip/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/makefile -------------------------------------------------------------------------------- /CPP/7zip/var_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/var_clang.mak -------------------------------------------------------------------------------- /CPP/7zip/var_clang_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/var_clang_x64.mak -------------------------------------------------------------------------------- /CPP/7zip/var_clang_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/var_clang_x86.mak -------------------------------------------------------------------------------- /CPP/7zip/var_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/var_gcc.mak -------------------------------------------------------------------------------- /CPP/7zip/var_gcc_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/var_gcc_arm64.mak -------------------------------------------------------------------------------- /CPP/7zip/var_gcc_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/var_gcc_x64.mak -------------------------------------------------------------------------------- /CPP/7zip/var_gcc_x86.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/var_gcc_x86.mak -------------------------------------------------------------------------------- /CPP/7zip/var_mac_arm64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/var_mac_arm64.mak -------------------------------------------------------------------------------- /CPP/7zip/var_mac_x64.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/var_mac_x64.mak -------------------------------------------------------------------------------- /CPP/7zip/warn_clang.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/warn_clang.mak -------------------------------------------------------------------------------- /CPP/7zip/warn_clang_mac.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/warn_clang_mac.mak -------------------------------------------------------------------------------- /CPP/7zip/warn_gcc.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/7zip/warn_gcc.mak -------------------------------------------------------------------------------- /CPP/Build.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Build.mak -------------------------------------------------------------------------------- /CPP/Common/AutoPtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/AutoPtr.h -------------------------------------------------------------------------------- /CPP/Common/Blake3Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Blake3Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/CRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/CRC.cpp -------------------------------------------------------------------------------- /CPP/Common/C_FileIO.cpp: -------------------------------------------------------------------------------- 1 | // Common/C_FileIO.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/Common/C_FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/C_FileIO.h -------------------------------------------------------------------------------- /CPP/Common/CksumReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/CksumReg.cpp -------------------------------------------------------------------------------- /CPP/Common/ComTry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/ComTry.h -------------------------------------------------------------------------------- /CPP/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Common.h -------------------------------------------------------------------------------- /CPP/Common/CrcReg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/CrcReg.cpp -------------------------------------------------------------------------------- /CPP/Common/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Defs.h -------------------------------------------------------------------------------- /CPP/Common/DynLimBuf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/DynLimBuf.cpp -------------------------------------------------------------------------------- /CPP/Common/DynLimBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/DynLimBuf.h -------------------------------------------------------------------------------- /CPP/Common/DynamicBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/DynamicBuffer.h -------------------------------------------------------------------------------- /CPP/Common/IntToString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/IntToString.cpp -------------------------------------------------------------------------------- /CPP/Common/IntToString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/IntToString.h -------------------------------------------------------------------------------- /CPP/Common/Lang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Lang.cpp -------------------------------------------------------------------------------- /CPP/Common/Lang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Lang.h -------------------------------------------------------------------------------- /CPP/Common/ListFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/ListFileUtils.h -------------------------------------------------------------------------------- /CPP/Common/Md2Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Md2Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/Md4Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Md4Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/Md5Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Md5Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/MyBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyBuffer.h -------------------------------------------------------------------------------- /CPP/Common/MyBuffer2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyBuffer2.h -------------------------------------------------------------------------------- /CPP/Common/MyCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyCom.h -------------------------------------------------------------------------------- /CPP/Common/MyException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyException.h -------------------------------------------------------------------------------- /CPP/Common/MyGuidDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyGuidDef.h -------------------------------------------------------------------------------- /CPP/Common/MyInitGuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyInitGuid.h -------------------------------------------------------------------------------- /CPP/Common/MyLinux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyLinux.h -------------------------------------------------------------------------------- /CPP/Common/MyMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyMap.cpp -------------------------------------------------------------------------------- /CPP/Common/MyMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyMap.h -------------------------------------------------------------------------------- /CPP/Common/MyString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyString.cpp -------------------------------------------------------------------------------- /CPP/Common/MyString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyString.h -------------------------------------------------------------------------------- /CPP/Common/MyTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyTypes.h -------------------------------------------------------------------------------- /CPP/Common/MyUnknown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyUnknown.h -------------------------------------------------------------------------------- /CPP/Common/MyVector.cpp: -------------------------------------------------------------------------------- 1 | // Common/MyVector.cpp 2 | 3 | #include "StdAfx.h" 4 | -------------------------------------------------------------------------------- /CPP/Common/MyVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyVector.h -------------------------------------------------------------------------------- /CPP/Common/MyWindows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyWindows.cpp -------------------------------------------------------------------------------- /CPP/Common/MyWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyWindows.h -------------------------------------------------------------------------------- /CPP/Common/MyXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyXml.cpp -------------------------------------------------------------------------------- /CPP/Common/MyXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/MyXml.h -------------------------------------------------------------------------------- /CPP/Common/NewHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/NewHandler.cpp -------------------------------------------------------------------------------- /CPP/Common/NewHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/NewHandler.h -------------------------------------------------------------------------------- /CPP/Common/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Random.cpp -------------------------------------------------------------------------------- /CPP/Common/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Random.h -------------------------------------------------------------------------------- /CPP/Common/Sha1Prepare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Sha1Prepare.cpp -------------------------------------------------------------------------------- /CPP/Common/Sha1Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Sha1Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/Sha256Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Sha256Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/Sha384Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Sha384Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/Sha512Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Sha512Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/StdAfx.h -------------------------------------------------------------------------------- /CPP/Common/StdInStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/StdInStream.cpp -------------------------------------------------------------------------------- /CPP/Common/StdInStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/StdInStream.h -------------------------------------------------------------------------------- /CPP/Common/StdOutStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/StdOutStream.cpp -------------------------------------------------------------------------------- /CPP/Common/StdOutStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/StdOutStream.h -------------------------------------------------------------------------------- /CPP/Common/StringConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/StringConvert.h -------------------------------------------------------------------------------- /CPP/Common/StringToInt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/StringToInt.cpp -------------------------------------------------------------------------------- /CPP/Common/StringToInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/StringToInt.h -------------------------------------------------------------------------------- /CPP/Common/TextConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/TextConfig.cpp -------------------------------------------------------------------------------- /CPP/Common/TextConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/TextConfig.h -------------------------------------------------------------------------------- /CPP/Common/UTFConvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/UTFConvert.cpp -------------------------------------------------------------------------------- /CPP/Common/UTFConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/UTFConvert.h -------------------------------------------------------------------------------- /CPP/Common/Wildcard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Wildcard.cpp -------------------------------------------------------------------------------- /CPP/Common/Wildcard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/Wildcard.h -------------------------------------------------------------------------------- /CPP/Common/XXH32Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/XXH32Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/XXH64Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/XXH64Reg.cpp -------------------------------------------------------------------------------- /CPP/Common/XzCrc64Init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/XzCrc64Init.cpp -------------------------------------------------------------------------------- /CPP/Common/XzCrc64Reg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Common/XzCrc64Reg.cpp -------------------------------------------------------------------------------- /CPP/Windows/COM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/COM.cpp -------------------------------------------------------------------------------- /CPP/Windows/COM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/COM.h -------------------------------------------------------------------------------- /CPP/Windows/Clipboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Clipboard.cpp -------------------------------------------------------------------------------- /CPP/Windows/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Clipboard.h -------------------------------------------------------------------------------- /CPP/Windows/CommonDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/CommonDialog.h -------------------------------------------------------------------------------- /CPP/Windows/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Console.cpp -------------------------------------------------------------------------------- /CPP/Windows/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Console.h -------------------------------------------------------------------------------- /CPP/Windows/Control/Edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Control/Edit.h -------------------------------------------------------------------------------- /CPP/Windows/Control/ReBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Control/ReBar.h -------------------------------------------------------------------------------- /CPP/Windows/DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/DLL.cpp -------------------------------------------------------------------------------- /CPP/Windows/DLL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/DLL.h -------------------------------------------------------------------------------- /CPP/Windows/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Defs.h -------------------------------------------------------------------------------- /CPP/Windows/ErrorMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/ErrorMsg.cpp -------------------------------------------------------------------------------- /CPP/Windows/ErrorMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/ErrorMsg.h -------------------------------------------------------------------------------- /CPP/Windows/FileDir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileDir.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileDir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileDir.h -------------------------------------------------------------------------------- /CPP/Windows/FileFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileFind.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileFind.h -------------------------------------------------------------------------------- /CPP/Windows/FileIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileIO.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileIO.h -------------------------------------------------------------------------------- /CPP/Windows/FileLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileLink.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileMapping.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileMapping.h -------------------------------------------------------------------------------- /CPP/Windows/FileName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileName.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileName.h -------------------------------------------------------------------------------- /CPP/Windows/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileSystem.cpp -------------------------------------------------------------------------------- /CPP/Windows/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/FileSystem.h -------------------------------------------------------------------------------- /CPP/Windows/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Handle.h -------------------------------------------------------------------------------- /CPP/Windows/MemoryGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/MemoryGlobal.h -------------------------------------------------------------------------------- /CPP/Windows/MemoryLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/MemoryLock.cpp -------------------------------------------------------------------------------- /CPP/Windows/MemoryLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/MemoryLock.h -------------------------------------------------------------------------------- /CPP/Windows/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Menu.cpp -------------------------------------------------------------------------------- /CPP/Windows/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Menu.h -------------------------------------------------------------------------------- /CPP/Windows/NationalTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/NationalTime.h -------------------------------------------------------------------------------- /CPP/Windows/Net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Net.cpp -------------------------------------------------------------------------------- /CPP/Windows/Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Net.h -------------------------------------------------------------------------------- /CPP/Windows/NtCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/NtCheck.h -------------------------------------------------------------------------------- /CPP/Windows/ProcessUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/ProcessUtils.h -------------------------------------------------------------------------------- /CPP/Windows/PropVariant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/PropVariant.cpp -------------------------------------------------------------------------------- /CPP/Windows/PropVariant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/PropVariant.h -------------------------------------------------------------------------------- /CPP/Windows/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Registry.cpp -------------------------------------------------------------------------------- /CPP/Windows/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Registry.h -------------------------------------------------------------------------------- /CPP/Windows/SecurityUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/SecurityUtils.h -------------------------------------------------------------------------------- /CPP/Windows/Shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Shell.cpp -------------------------------------------------------------------------------- /CPP/Windows/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Shell.h -------------------------------------------------------------------------------- /CPP/Windows/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/StdAfx.h -------------------------------------------------------------------------------- /CPP/Windows/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/System.cpp -------------------------------------------------------------------------------- /CPP/Windows/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/System.h -------------------------------------------------------------------------------- /CPP/Windows/SystemInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/SystemInfo.cpp -------------------------------------------------------------------------------- /CPP/Windows/SystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/SystemInfo.h -------------------------------------------------------------------------------- /CPP/Windows/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Thread.h -------------------------------------------------------------------------------- /CPP/Windows/TimeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/TimeUtils.cpp -------------------------------------------------------------------------------- /CPP/Windows/TimeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/TimeUtils.h -------------------------------------------------------------------------------- /CPP/Windows/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Window.cpp -------------------------------------------------------------------------------- /CPP/Windows/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/CPP/Windows/Window.h -------------------------------------------------------------------------------- /DOC/7zC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/DOC/7zC.txt -------------------------------------------------------------------------------- /DOC/7zFormat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/DOC/7zFormat.txt -------------------------------------------------------------------------------- /DOC/7zip.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/DOC/7zip.hhp -------------------------------------------------------------------------------- /DOC/7zip.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/DOC/7zip.wxs -------------------------------------------------------------------------------- /DOC/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/DOC/License.txt -------------------------------------------------------------------------------- /DOC/Methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/DOC/Methods.txt -------------------------------------------------------------------------------- /DOC/copying.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/DOC/copying.txt -------------------------------------------------------------------------------- /DOC/lzma.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/DOC/lzma.txt -------------------------------------------------------------------------------- /DOC/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/DOC/readme.txt -------------------------------------------------------------------------------- /DOC/src-history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/DOC/src-history.txt -------------------------------------------------------------------------------- /DOC/unRarLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/DOC/unRarLicense.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinfeihan57/p7zip/HEAD/README.md --------------------------------------------------------------------------------