2012-06-20 18:23:45 -05:00
|
|
|
#[link(name = "c", vers = "0.1")];
|
|
|
|
#[crate_type = "lib"];
|
|
|
|
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod a;
|
2012-06-20 18:23:45 -05:00
|
|
|
|
2012-09-05 14:32:05 -05:00
|
|
|
use a::to_strz;
|
2012-06-20 18:23:45 -05:00
|
|
|
|
2012-08-13 18:20:27 -05:00
|
|
|
impl bool: to_strz {
|
2012-08-22 19:24:52 -05:00
|
|
|
fn to_strz() -> ~str { fmt!("%b", self) }
|
2012-06-20 18:23:45 -05:00
|
|
|
}
|