rust/src/lib/ptr.rs

13 lines
320 B
Rust
Raw Normal View History

// Unsafe pointer utility functions.
native "rust-intrinsic" mod rusti {
fn addr_of[T](val: &T) -> *mutable T;
2011-07-27 07:19:39 -05:00
fn ptr_offset[T](ptr: *T, count: uint) -> *T;
}
fn addr_of[T](val: &T) -> *mutable T { ret rusti::addr_of(val); }
2011-07-27 07:19:39 -05:00
fn offset[T](ptr: *T, count: uint) -> *T {
ret rusti::ptr_offset(ptr, count);
}