Files
cub3d/lib/libft/ft_memfree_all.c
2025-11-16 20:26:45 +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/11/16 19:04:45 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;
}