cbindgen 0.8.6

A tool for generating C bindings to Rust code.
Documentation

pub const MY_CONST: u8 = 4;

#[no_mangle]
pub extern "C" fn ExternFunction() {
}

#[repr(u8)]
pub enum OnlyThisShouldBeGenerated {
    Foo,
    Bar,
}