https://github.com/flareflo/bogo-alloc
https://github.com/flareflo/bogo-alloc
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/flareflo/bogo-alloc
- Owner: FlareFlo
- License: wtfpl
- Created: 2023-09-28T01:27:39.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-09-28T01:40:32.000Z (over 2 years ago)
- Last Synced: 2025-01-01T19:43:40.125Z (over 1 year ago)
- Language: Rust
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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();
```