cbindgen 0.8.6

A tool for generating C bindings to Rust code.
Documentation
struct A {
    x: i32,
    y: f32,
}

#[repr(C)]
struct B {
    x: i32,
    y: f32,
}

#[no_mangle]
pub extern "C" fn root(a: *const A, b: B) {}