ps-alloc 0.1.0-8

a reasonably safe allocator
Documentation
1
2
3
4
5
/// Used to mark freed allocations to prevent use-after-free at runtime.
pub const MARKER_FREE: [u8; 8] = *b"Fr33Mmry";

/// Used to mark valid allocations to prevent double-free and invalid deallocations at runtime.
pub const MARKER_USED: [u8; 8] = *b"U53dMmry";