#include #include #include #include #include t_win *ft_init_win(void) { t_win *wlist; if (!(wlist = (t_win*)malloc(sizeof(t_win)))) return (NULL); return (wlist); } t_cub *ft_init_cub(void) { t_cub *clist; if (!(clist = (t_cub*)malloc(sizeof(t_cub)))) return (NULL); return (clist); }