cbindgen 0.8.6

A tool for generating C bindings to Rust code.
Documentation
struct Foo {
    #[cfg(windows)]
    x: i32,
}

pub fn foo() {
    Foo {
        #[cfg(windows)]
        x: 0,
    };
}