mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
16 lines
372 B
Zig
16 lines
372 B
Zig
//! Compression algorithms.
|
|
|
|
/// gzip and zlib are here.
|
|
pub const flate = @import("compress/flate.zig");
|
|
pub const lzma = @import("compress/lzma.zig");
|
|
pub const lzma2 = @import("compress/lzma2.zig");
|
|
pub const xz = @import("compress/xz.zig");
|
|
pub const zstd = @import("compress/zstd.zig");
|
|
|
|
test {
|
|
_ = flate;
|
|
_ = lzma;
|
|
_ = lzma2;
|
|
_ = xz;
|
|
_ = zstd;
|
|
}
|