This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/zeroidc/vendor/cbindgen/tests/rust/extern.rs

12 lines
114 B
Rust

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