This commit is contained in:
2025-11-28 20:15:44 +01:00
parent 9ee4fca7a1
commit b7861ad28c

View File

@@ -1,29 +1,29 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* frees.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/11/28 20:03:22 by aortigos #+# #+# */
/* Updated: 2025/11/28 20:09:04 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* frees.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aortigos <aortigos@student.42malaga.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/11/28 20:03:22 by aortigos #+# #+# */
/* Updated: 2025/11/28 20:09:04 by aortigos ### ########.fr */
/* */
/* ************************************************************************** */
#include "../../includes/cub3d.h"
#include "../../includes/cub3d.h"
void freetl(char *ture, char *line, int fd)
{
void freetl(char *ture, char *line, int fd)
{
if (ture)
ft_memfree(ture);
if (line)
ft_memfree(line);
if (fd >= 0)
close(fd);
}
}
void free_map(t_data *data)
{
void free_map(t_data *data)
{
free2d(data->sq_map);
free2d(data->map2d);
free2d(data->ture2d);
@@ -31,10 +31,10 @@ void free_map(t_data *data)
free2d(data->ff);
if (data->cc)
free2d(data->cc);
}
}
void free_m(t_mlx *mlx)
{
void free_m(t_mlx *mlx)
{
if (mlx->dt->sq_map)
free2d(mlx->dt->sq_map);
if(mlx->dt->map2d)
@@ -45,10 +45,10 @@ void free_m(t_mlx *mlx)
free2d(mlx->dt->ff);
if (mlx->dt->cc)
free2d(mlx->dt->cc);
}
}
void freelist(t_turelist **txture)
{
void freelist(t_turelist **txture)
{
t_turelist *tmp;
tmp = *txture;
@@ -61,4 +61,4 @@ void freelist(t_turelist **txture)
tmp = *txture;
}
ft_memfree(*txture);
}
}