https://github.com/twfksh/allocators
collection of memory allocation methods implemented in C
https://github.com/twfksh/allocators
Last synced: over 1 year ago
JSON representation
collection of memory allocation methods implemented in C
- Host: GitHub
- URL: https://github.com/twfksh/allocators
- Owner: twfksh
- Created: 2024-02-02T10:41:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-04T05:38:43.000Z (over 2 years ago)
- Last Synced: 2025-01-22T13:40:30.540Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# collection of memory allocation methods
## quick start
requirements - clang
```bat
.\build
.\main
```
## current implementations
- [x] linear/arena allocator
- [ ] stack allocator
- [ ] pool allocator
- [ ] implement malloc from scratch
thats it for now I guess..