finished show_mem_alloc_ex

This commit is contained in:
2025-02-15 16:22:08 +01:00
parent f5b2f8b8bf
commit 0a64743980
4 changed files with 76 additions and 17 deletions

6
main.c
View File

@ -6,7 +6,7 @@
/* By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/02/14 17:19:23 by tomoron #+# #+# */
/* Updated: 2025/02/14 17:19:59 by tomoron ### ########.fr */
/* Updated: 2025/02/15 15:00:37 by tomoron ### ########.fr */
/* */
/* ************************************************************************** */
@ -21,7 +21,5 @@ int main(void)
ptr = malloc(1203);
show_alloc_mem();
ptr = realloc(ptr, 12045);
show_alloc_mem();
free(ptr);
show_alloc_mem();
show_alloc_mem_ex();
}