ps-alloc 0.1.0-8

a reasonably safe allocator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(clippy::not_unsafe_ptr_arg_deref)]

mod alloc;
mod error;
mod free;
mod header;
mod marker;
mod realloc;

pub use alloc::alloc;
pub use error::{AllocationError, DeallocationError, ReallocationError};
pub use free::free;
pub use header::HEADER_SIZE;
pub use realloc::realloc;