cbindgen 0.8.6

A tool for generating C bindings to Rust code.
Documentation
mod foo {
    #[repr(C)]
    struct Foo {
        x: f32,
    }
}

#[no_mangle]
pub extern "C" fn root(a: foo::Foo)
{ }