├── .gitattributes ├── .gitignore ├── LICENSE.md ├── Package.swift ├── README.md ├── Sources ├── SwiftZSTD │ ├── DictionaryZSTDProcessor.swift │ ├── ZSTDDictionaryBuilder.swift │ ├── ZSTDProcessor.swift │ ├── ZSTDProcessorCommon.swift │ └── ZSTDStream.swift ├── SwiftZSTDC │ ├── StreamHelpers.h │ ├── StreamHelpers.m │ └── include │ │ └── SwiftZSTDC.h └── zstdlib │ ├── LICENSE │ ├── 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 │ ├── threading.c │ ├── threading.h │ ├── xxhash.c │ ├── xxhash.h │ ├── zstd_common.c │ ├── zstd_deps.h │ ├── zstd_errors.h │ ├── zstd_internal.h │ └── zstd_trace.h │ ├── compress │ ├── 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 │ ├── 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 │ └── zdict.h │ ├── include │ └── zstdlib.h │ ├── zdict.h │ ├── zstd.h │ └── zstd_errors.h └── Tests └── SwiftZSTDTests ├── SwiftZSTDBasicTests.swift ├── SwiftZSTDStreamTests.swift └── TestingCommon.swift /.gitattributes: -------------------------------------------------------------------------------- 1 | zstdlib/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SwiftZSTD/DictionaryZSTDProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/SwiftZSTD/DictionaryZSTDProcessor.swift -------------------------------------------------------------------------------- /Sources/SwiftZSTD/ZSTDDictionaryBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/SwiftZSTD/ZSTDDictionaryBuilder.swift -------------------------------------------------------------------------------- /Sources/SwiftZSTD/ZSTDProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/SwiftZSTD/ZSTDProcessor.swift -------------------------------------------------------------------------------- /Sources/SwiftZSTD/ZSTDProcessorCommon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/SwiftZSTD/ZSTDProcessorCommon.swift -------------------------------------------------------------------------------- /Sources/SwiftZSTD/ZSTDStream.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/SwiftZSTD/ZSTDStream.swift -------------------------------------------------------------------------------- /Sources/SwiftZSTDC/StreamHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/SwiftZSTDC/StreamHelpers.h -------------------------------------------------------------------------------- /Sources/SwiftZSTDC/StreamHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/SwiftZSTDC/StreamHelpers.m -------------------------------------------------------------------------------- /Sources/SwiftZSTDC/include/SwiftZSTDC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/SwiftZSTDC/include/SwiftZSTDC.h -------------------------------------------------------------------------------- /Sources/zstdlib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/LICENSE -------------------------------------------------------------------------------- /Sources/zstdlib/common/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/bitstream.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/compiler.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/cpu.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/debug.c -------------------------------------------------------------------------------- /Sources/zstdlib/common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/debug.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/entropy_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/entropy_common.c -------------------------------------------------------------------------------- /Sources/zstdlib/common/error_private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/error_private.c -------------------------------------------------------------------------------- /Sources/zstdlib/common/error_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/error_private.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/fse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/fse.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/fse_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/fse_decompress.c -------------------------------------------------------------------------------- /Sources/zstdlib/common/huf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/huf.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/mem.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/pool.c -------------------------------------------------------------------------------- /Sources/zstdlib/common/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/pool.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/threading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/threading.c -------------------------------------------------------------------------------- /Sources/zstdlib/common/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/threading.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/xxhash.c -------------------------------------------------------------------------------- /Sources/zstdlib/common/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/xxhash.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/zstd_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/zstd_common.c -------------------------------------------------------------------------------- /Sources/zstdlib/common/zstd_deps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/zstd_deps.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/zstd_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/zstd_errors.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/zstd_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/zstd_internal.h -------------------------------------------------------------------------------- /Sources/zstdlib/common/zstd_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/common/zstd_trace.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/fse_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/fse_compress.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/hist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/hist.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/hist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/hist.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/huf_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/huf_compress.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_compress.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_compress_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_compress_internal.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_compress_literals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_compress_literals.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_compress_literals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_compress_literals.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_compress_sequences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_compress_sequences.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_compress_sequences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_compress_sequences.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_compress_superblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_compress_superblock.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_compress_superblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_compress_superblock.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_cwksp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_cwksp.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_double_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_double_fast.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_double_fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_double_fast.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_fast.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_fast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_fast.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_lazy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_lazy.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_lazy.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_ldm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_ldm.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_ldm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_ldm.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_ldm_geartab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_ldm_geartab.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_opt.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstd_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstd_opt.h -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstdmt_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstdmt_compress.c -------------------------------------------------------------------------------- /Sources/zstdlib/compress/zstdmt_compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/compress/zstdmt_compress.h -------------------------------------------------------------------------------- /Sources/zstdlib/decompress/huf_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/decompress/huf_decompress.c -------------------------------------------------------------------------------- /Sources/zstdlib/decompress/zstd_ddict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/decompress/zstd_ddict.c -------------------------------------------------------------------------------- /Sources/zstdlib/decompress/zstd_ddict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/decompress/zstd_ddict.h -------------------------------------------------------------------------------- /Sources/zstdlib/decompress/zstd_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/decompress/zstd_decompress.c -------------------------------------------------------------------------------- /Sources/zstdlib/decompress/zstd_decompress_block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/decompress/zstd_decompress_block.c -------------------------------------------------------------------------------- /Sources/zstdlib/decompress/zstd_decompress_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/decompress/zstd_decompress_block.h -------------------------------------------------------------------------------- /Sources/zstdlib/decompress/zstd_decompress_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/decompress/zstd_decompress_internal.h -------------------------------------------------------------------------------- /Sources/zstdlib/deprecated/zbuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/deprecated/zbuff.h -------------------------------------------------------------------------------- /Sources/zstdlib/deprecated/zbuff_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/deprecated/zbuff_common.c -------------------------------------------------------------------------------- /Sources/zstdlib/deprecated/zbuff_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/deprecated/zbuff_compress.c -------------------------------------------------------------------------------- /Sources/zstdlib/deprecated/zbuff_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/deprecated/zbuff_decompress.c -------------------------------------------------------------------------------- /Sources/zstdlib/dictBuilder/cover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/dictBuilder/cover.c -------------------------------------------------------------------------------- /Sources/zstdlib/dictBuilder/cover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/dictBuilder/cover.h -------------------------------------------------------------------------------- /Sources/zstdlib/dictBuilder/divsufsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/dictBuilder/divsufsort.c -------------------------------------------------------------------------------- /Sources/zstdlib/dictBuilder/divsufsort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/dictBuilder/divsufsort.h -------------------------------------------------------------------------------- /Sources/zstdlib/dictBuilder/fastcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/dictBuilder/fastcover.c -------------------------------------------------------------------------------- /Sources/zstdlib/dictBuilder/zdict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/dictBuilder/zdict.c -------------------------------------------------------------------------------- /Sources/zstdlib/dictBuilder/zdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/dictBuilder/zdict.h -------------------------------------------------------------------------------- /Sources/zstdlib/include/zstdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/include/zstdlib.h -------------------------------------------------------------------------------- /Sources/zstdlib/zdict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/zdict.h -------------------------------------------------------------------------------- /Sources/zstdlib/zstd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/zstd.h -------------------------------------------------------------------------------- /Sources/zstdlib/zstd_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Sources/zstdlib/zstd_errors.h -------------------------------------------------------------------------------- /Tests/SwiftZSTDTests/SwiftZSTDBasicTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Tests/SwiftZSTDTests/SwiftZSTDBasicTests.swift -------------------------------------------------------------------------------- /Tests/SwiftZSTDTests/SwiftZSTDStreamTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Tests/SwiftZSTDTests/SwiftZSTDStreamTests.swift -------------------------------------------------------------------------------- /Tests/SwiftZSTDTests/TestingCommon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aperedera/SwiftZSTD/HEAD/Tests/SwiftZSTDTests/TestingCommon.swift --------------------------------------------------------------------------------