bogo-alloc 0.1.0

An allocator that makes C/C++ developers feel right at home.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# 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();
```