#![no_std]
pub use allocator::HeapAllocator;
mod allocator;
const fn align_up(addr: usize, alignment: usize) -> usize {
(addr + alignment - 1) & !(alignment - 1)
}
const fn is_aligned(addr: usize, alignment: usize) -> bool {
(addr & (alignment - 1)) == 0
}
#[derive(Debug, Clone, Copy)]
pub struct HeapStats {
pub allocated: usize,
pub free_size: usize,
pub heap_size: usize,
}
pub trait PageAllocatorProvider<const PAGE_SIZE: usize> {
fn allocate_pages(&mut self, pages: usize) -> Option<*mut u8>;
fn deallocate_pages(&mut self, pages: usize) -> bool;
}