Function alloc

Source
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 free is called before the returned pointer goes out of scope.