Expand description
Malloc implementation using Rust allocator
This crate MUST not have semver breaking changes
Modules§
Constants§
- DEFAULT_
ALIGNMENT - Default alignment.
Functions§
- generic_
rust_ ⚠malloc - Generic
malloc
implementation which requires size to be converted intousize
without error - generic_
rust_ ⚠realloc - Generic
realloc
implementation which requires size to be converted intousize
without error - generic_
try_ ⚠rust_ malloc - Generic
malloc
implementation which allows size to be optionally convertable. - generic_
try_ ⚠rust_ realloc - Generic
realloc
implementation which allows size to be optionally convertable. - rust_
calloc ⚠ - Baseline
calloc
implementation with Rust allocator - rust_
free ⚠ - Baseline
free
implementation with Rust allocator - rust_
malloc ⚠ - Baseline
malloc
implementation with Rust allocator - rust_
realloc ⚠ - Baseline
realloc
implementation with Rust allocator - rust_
size ⚠ - Returns size of allocated memory in pointer