int main(int ac, char **av) { Map map; if (get_map(&map)) return (-1); if (check_pos(map)) return (-1); Init_game(&map); aff_all(&map); SDL_Quit(); free(map.map); return (0); }
void aff_all(list l){ if (!(isEmpty(l))){ aff_candidat(head(l)); aff_all(tail(l));} }