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

@ -18,7 +18,8 @@ SRCS := $(SRCS_DIR)/ft_malloc.c \
$(SRCS_DIR)/ft_calloc.c \
$(SRCS_DIR)/ft_realloc.c \
$(SRCS_DIR)/init_state.c \
$(SRCS_DIR)/bonus_utils.c
$(SRCS_DIR)/bonus_utils.c \
$(SRCS_DIR)/utils.c
OBJS := $(SRCS:.c=.o)