| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
realloc returns the same pointer if the chunk is large enough,
otherwise malloc + memcpy + free. The random test now verifies
data integrity after resizing across all three categories.
|
| |
|
|
|
|
|
| |
test_random allocates N blocks per category (TINY/SMALL/LARGE)
with random sizes, fills them with a deterministic pattern, and
verifies the data. Run with system malloc and LD_PRELOAD to
compare output. Seed and count are parameterized via argv.
|
| |
|
|
|
|
| |
Implement show_alloc_mem() to print all zones and allocations
by ascending address. Add test_show binary that links directly
against libft_malloc.so to exercise it.
|
|
|
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.
|