memapi2 0.11.4

A no_std/no-alloc-friendly memory allocation interface for raw buffers, with improved error reporting.
Documentation
1
2
3
4
5
6
7
#[cfg(feature = "c_alloc")]
/// An allocator which uses C's [`posix_memalign`](c_alloc::ffi::c_alloc) set of allocation
/// functions.
pub mod c_alloc;
#[cfg(feature = "stack_alloc")]
/// An allocator which uses C's `alloca`/`_alloca` allocation function.
pub mod stack_alloc;