枠の確保はft_split_by_spaceの29行目malloc(sizeof(char *) * (number_of_spaces + 2));なので、split.c char **ft_split_by_space(char *s) { char **res; int i = 0; int j = 0; int const number_of_spaces = ft_utils(s); res = malloc(sizeof(char *) * (number_of_spaces ...