42-malloc
42-malloc copied to clipboard
💽 C implementation of the malloc library using mmap. Go check the medium article if you want to learn more about how it works.
Results
1
42-malloc issues
Sort by
recently updated
recently updated
newest added
I’ve been reviewing your code and noticed something: your implementation can create empty blocks. The divide_block function splits an available block into two parts — one for the user (with...