1
2
3
4
5
6
7
pub mod allocation;
pub mod bytes;
pub mod error;

pub type Ptr = u64;
pub type Len = u64;
pub type AllocationPtr = Ptr;