pub fn alloc(size: usize) -> Result<*mut u8, AllocationError>Expand description
- A reasonably safe implementation of
alloc. - Memory allocated by this function must be freed by this crate’s
free. - Caller guarantees
freeis called before the returned pointer goes out of scope.