aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/test_preload.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix stale filename comment, const qualifier, and int-to-size_t castsThomas Vanbesien2026-02-271-5/+5
| | | | | | | - test_preload.c: @file main.c -> @file test_preload.c - show_alloc_mem.c, test_preload.c: hex array -> static const - show_alloc_mem.c, test_preload.c, test_random.c: use size_t for sizeof-derived indices instead of casting to int
* Add show_alloc_mem and test_show, rename test to test_preloadThomas Vanbesien2026-02-271-0/+46
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.