rust/src/test/run-pass/foreign-fn-linkname.rs

21 lines
375 B
Rust
Raw Normal View History

use std;
#[nolink]
#[abi = "cdecl"]
extern mod libc {
#[link_name = "strlen"]
fn my_strlen(str: *u8) -> uint;
}
fn strlen(str: ~str) -> uint unsafe {
// C string is terminated with a zero
let bytes = str::to_bytes(str) + ~[0u8];
2012-08-01 19:30:05 -05:00
return libc::my_strlen(vec::unsafe::to_ptr(bytes));
}
fn main() {
let len = strlen(~"Rust");
assert(len == 4u);
}