box_raw_ptr 0.5.2

A Rust library providing safe wrappers for working with raw pointer. These raw pointers are `*const T` and `*mut T`. These wrappers ensure memory safety by encapsulating the raw pointers in safe abstractions and providing safe methods for working with them.
Documentation
1
2
3
4
5
fn main() {
    cc::Build::new()
        .file("src/allocator.c")
        .compile("allocator")
}