#include #include #include #include static void ft_free_lists(t_win *wlist) { ft_memdel(wlist->clist->no_tex_path); ft_memdel(wlist->clist->so_tex_path); ft_memdel(wlist->clist->ea_tex_path); ft_memdel(wlist->clist->we_tex_path); ft_memdel(wlist->clist->sprite_path); ft_memdel(wlist->clist); ft_memdel(wlist->winptr); ft_memdel(wlist->wlx); ft_memdel(wlist); } int ft_exit(uint8_t exit_code, t_win *wlist) { ft_printf("Exiting program\n"); if (exit_code < 0 || exit_code > 0) ft_printf("Exit code: %hhu\n", exit_code); ft_free_lists(wlist); exit(exit_code); return (0); }