Files
cub3d/lib/libft/ft_memfree_all.c
2025-12-09 20:04:37 +01:00

27 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memfree_all.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/09/22 20:46:43 by aortigos #+# #+# */
/* Updated: 2025/12/09 20:00:48 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void free2d(char **ptr)
{
int i;
if (!ptr)
return ;
i = 0;
while (ptr[i])
ft_memfree(ptr[i++]);
free(ptr);
ptr = NULL;
}