Function decompress [src]

Prototype

pub fn decompress( allocator: Allocator, reader: anytype, writer: anytype, ) !void

Parameters

allocator: Allocator

Source

pub fn decompress( allocator: Allocator, reader: anytype, writer: anytype, ) !void { var decoder = try decode.Decoder.init(allocator); defer decoder.deinit(allocator); return decoder.decompress(allocator, reader, writer); }