crndm 0.1.0

Persistent Programming Library
1
2
3
4
5
6
7
8
9
//! Manually manage memory through raw pointers

mod fatptr;
mod ptr;
mod non_null;

pub use fatptr::*;
pub use ptr::*;
pub use non_null::*;