#![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;