2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2011-11-15 22:30:03 -06:00
|
|
|
|
|
|
|
|
2011-12-15 14:25:29 -06:00
|
|
|
#[nolink]
|
2011-11-16 22:49:38 -06:00
|
|
|
#[abi = "cdecl"]
|
2012-07-03 18:11:00 -05:00
|
|
|
extern mod libc {
|
2011-11-14 07:06:39 -06:00
|
|
|
#[link_name = "strlen"]
|
2013-01-30 17:56:40 -06:00
|
|
|
pub fn my_strlen(str: *u8) -> uint;
|
2011-11-15 22:30:03 -06:00
|
|
|
}
|
|
|
|
|
2013-01-23 13:43:58 -06:00
|
|
|
fn strlen(str: ~str) -> uint {
|
|
|
|
unsafe {
|
|
|
|
// C string is terminated with a zero
|
|
|
|
let bytes = str::to_bytes(str) + ~[0u8];
|
|
|
|
return libc::my_strlen(vec::raw::to_ptr(bytes));
|
|
|
|
}
|
2011-11-15 22:30:03 -06:00
|
|
|
}
|
|
|
|
|
2011-11-15 12:09:28 -06:00
|
|
|
fn main() {
|
2012-07-14 00:57:48 -05:00
|
|
|
let len = strlen(~"Rust");
|
2011-11-15 22:30:03 -06:00
|
|
|
assert(len == 4u);
|
|
|
|
}
|