/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_exit.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2020/02/02 17:19:23 by rbousset #+# ## ## #+# */ /* Updated: 2020/02/02 17:19:23 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include #include #include #include #include #include static void ft_free_lists(t_cub *clist) { ft_memdel((void**)&clist->no_tex_path); ft_memdel((void**)&clist->so_tex_path); ft_memdel((void**)&clist->ea_tex_path); ft_memdel((void**)&clist->we_tex_path); ft_memdel((void**)&clist->sprite_path); ft_memdel((void**)&clist->mapl); ft_free_words(clist->map); ft_memdel((void**)&clist->plist); if (!clist->wlist->inited) ft_memdel((void**)&clist->wlist->winptr); ft_memdel((void**)&clist->wlist->wlx); ft_memdel((void**)&clist->wlist); ft_memdel((void**)&clist); } int ft_exit(uint8_t exit_code, t_cub *clist) { if (clist->wlist->inited) mlx_destroy_window(clist->wlist->wlx, clist->wlist->winptr); ft_free_lists(clist); ft_printf("Exiting program\n"); if (exit_code < 0 || exit_code > 0) ft_printf("Exit code: %hhu\n", exit_code); exit(exit_code); return (0); }