cbindgen/tests/rust/extern.rs
2017-11-09 18:04:22 -05:00

12 lines
114 B
Rust

#[repr(C)]
struct Normal {
x: i32,
y: f32,
}
extern "C" {
fn foo() -> i32;
fn bar(a: Normal);
}