mirror of
https://codeberg.org/ACME-Corporation/cub3d.git
synced 2025-12-06 01:48:08 +01:00
24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* frees.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: kcolin <kcolin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2025/07/17 14:27:11 by kcolin #+# #+# */
|
|
/* Updated: 2025/07/21 11:36:53 by kcolin ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef FREES_H
|
|
# define FREES_H
|
|
|
|
# include "../cub3d_data.h"
|
|
|
|
void gnl_exhaust(int fd);
|
|
int destroy(t_cub3d_data *data, int exit_code);
|
|
void free_tab(char **tab);
|
|
void free_tab_length(char **tab, int length);
|
|
void free_map(t_mapdata *map);
|
|
|
|
#endif // FREES_H
|