added the mandatory show_alloc_mem, and sorted the zones by increasing address in the linked lists

This commit is contained in:
thrieg 2025-12-13 06:07:24 +01:00
parent 65447f4a0a
commit db2b5f27bb
92 changed files with 176 additions and 20 deletions

View file

@ -3,10 +3,10 @@
/* ::: :::::::: */
/* ft_malloc_public.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: thrieg < thrieg@student.42mulhouse.fr> +#+ +:+ +#+ */
/* By: thrieg <thrieg@student.42mulhouse.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/11/25 12:31:43 by thrieg #+# #+# */
/* Updated: 2025/11/28 18:26:47 by thrieg ### ########.fr */
/* Updated: 2025/12/13 05:34:43 by thrieg ### ########.fr */
/* */
/* ************************************************************************** */
@ -21,5 +21,6 @@ void free(void *ptr);
void *calloc(size_t nmemb, size_t size);
void *realloc(void *ptr, size_t size);
void show_alloc_mem_ex(bool hexdump_free_zones);
void show_alloc_mem();
#endif