aboutsummaryrefslogtreecommitdiffstats
path: root/src/free.c
Commit message (Collapse)AuthorAgeFilesLines
* Implement free and add testing notes to READMEThomas Vanbesien2026-02-271-4/+57
| | | | | | free now locates the chunk matching the pointer, marks it as free for TINY/SMALL zones, and munmaps LARGE allocations. Document why ASan is incompatible and list alternatives.
* Initial scaffold: Makefile, stub malloc/free/realloc, test harnessThomas Vanbesien2026-02-221-0/+14
Build system produces libft_malloc_$HOSTTYPE.so shared library with Libft (NOMALLOC=1) as dependency. Stub functions print their name and return NULL. Test runner compares system malloc vs LD_PRELOAD output using write(2) to avoid stdio interference.