c_bridge 0.6.0

Some data structures and abstractions to create clean Rust<->C-FFI interfaces
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
	#[cfg(feature = "test_build")] {
		cc::Build::new()
			.file("src/tests/test.c")
			.include("interfaces/c")
			.warnings_into_errors(true)
			.compile("test");
	}
}