libffi-sys 2.3.0

Raw Rust bindings for libffi
Documentation
1
2
3
4
5
6
7
8
9
pub use std::{
    env, fs,
    path::{Path, PathBuf},
    process::Command,
};

pub fn run_command(which: &'static str, cmd: &mut Command) {
    assert!(cmd.status().expect(which).success(), "{}", which);
}