meson/test cases/rust/2 sharedlib/stuff.rs

12 lines
167 B
Rust

#![crate_name = "stuff"]
extern "C" {
fn c_value() -> i32;
}
pub fn explore() -> String {
unsafe {
format!("library{}string", c_value())
}
}