#include #include static void ft_checkdigit(const char *word, t_cub *clist) { size_t i; i = 0; while (ft_isdigit(word[i])) i++; if (i != ft_strlen(word)) ft_map_error(1, clist); } int ft_get_res(int fd, t_cub *clist) { char *line; char **words; if (get_next_line(fd, &line) <= 0 || !(words = ft_split(line, ' '))) { ft_memdel(line); return (ft_map_error(1, clist)); } if (!(*words) || ft_strcmp(*words, "R") || !(*(words + 1)) || !(*(words + 2)) || (*(words + 3))) { ft_free_words(words, line); return (ft_map_error(1, clist)); } ft_checkdigit(words[1], clist); ft_checkdigit(words[2], clist); clist->wlist->x_size = ft_atoi(words[1]); clist->wlist->y_size = ft_atoi(words[2]); ft_free_words(words, line); return (0); }