s2protocol 3.5.6

A parser for Starcraft II - Replay format, exports to different target formats
Documentation
#[path = "cli/mod.rs"]
mod cli;

#[cfg(unix)]
fn reset_sigpipe() {
    unsafe {
        libc::signal(libc::SIGPIPE, libc::SIG_DFL);
    }
}

#[cfg(not(unix))]
fn reset_sigpipe() {
    // no-op
}

fn main() {
    reset_sigpipe();
    cli::process_cli_request().unwrap();
}