Files
wasmtime/crates/misc/py/examples/import/demo.rs
Dan Gohman 22641de629 Initial reorg.
This is largely the same as #305, but updated for the current tree.
2019-11-08 06:35:40 -08:00

12 lines
208 B
Rust

extern "C" {
fn callback(s: *const u8, s_len: u32) -> u32;
}
#[no_mangle]
pub extern "C" fn test() {
let msg = "Hello, world!";
unsafe {
callback(msg.as_ptr(), msg.len() as u32);
}
}