Sindbad~EG File Manager

Current Path : /usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/weezl/examples/
Upload File :
Current File : //usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/weezl/examples/lzw-decompress.rs

//! Decompresses the input from stdin and writes the result to stdout.

use std::io::{self, BufWriter};

fn main() {
    match {
        let mut decoder = weezl::decode::Decoder::new(weezl::BitOrder::Msb, 8);
        let stdout = io::stdout();
        let stdout = BufWriter::new(stdout.lock());
        let stdin = io::stdin();
        let stdin = stdin.lock();
        decoder.into_stream(stdout).decode_all(stdin).status
    } {
        Ok(()) => (),
        Err(err) => eprintln!("{}", err),
    }
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists