21 lines
997 B
C
21 lines
997 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* free.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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;
|
|
}
|