/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* free.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: tomoron +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/11/30 18:46:07 by tomoron #+# #+# */ /* Updated: 2024/11/30 22:39:16 by tomoron ### ########.fr */ /* */ /* ************************************************************************** */ #include "includes/malloc.h" void ft_free(void *ptr) { t_alloc *alloc; alloc = (t_alloc *)ptr - 1; }