An open API service indexing awesome lists of open source software.

https://github.com/flareflo/bogo-alloc


https://github.com/flareflo/bogo-alloc

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Bogo-alloc
## An allocator that makes C/C++ developers feel right at home.

---

Example usage:
```rust
// Note: 2^32 bytes are the limit for allocations on this heap
#[global_allocator]
static A: BogoAlloc<32> = BogoAlloc::new();
```