Crate malloc_rust

Source
Expand description

Malloc implementation using Rust allocator

This crate MUST not have semver breaking changes

Modules§

Constants§

Functions§

  • Generic malloc implementation which requires size to be converted into usize without error
  • Generic realloc implementation which requires size to be converted into usize without error
  • Generic malloc implementation which allows size to be optionally convertable.
  • Generic realloc implementation which allows size to be optionally convertable.
  • Baseline calloc implementation with Rust allocator
  • Baseline free implementation with Rust allocator
  • Baseline malloc implementation with Rust allocator
  • Baseline realloc implementation with Rust allocator
  • Returns size of allocated memory in pointer