Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ozerovandrei/free-list-allocator

Custom free list allocator
https://github.com/ozerovandrei/free-list-allocator

Last synced: 16 days ago
JSON representation

Custom free list allocator

Awesome Lists containing this project

README

        

# Custom free list allocator

Free list allocator that provides `first-fit`, `next-fit` and `best-fit`
allocation strategies.

## Compilation command (MacOS)

```
clang++ -std=c++17 -stdlib=libc++ -O3 ./src/main.cpp
```