Crates.io | malloc-bind |
lib.rs | malloc-bind |
version | 0.1.0 |
source | src |
created_at | 2017-09-03 01:37:11.991582 |
updated_at | 2017-09-03 01:37:11.991582 |
description | A tool to implement the C malloc API using a Rust allocator. |
homepage | |
repository | https://github.com/ezrosent/allocators-rs/tree/master/malloc-bind |
max_upload_size | |
id | 30338 |
size | 25,951 |
The malloc-bind
crate provides bindings for the C malloc
API. Given an implementation of the Rust Alloc
trait, it produces implementations of the C malloc
API (malloc
, free
, realloc
, etc) and defines extern "C"
functions that can be used to produce a C shared object file.