/* ************************************************************************** */ /* */ /* .--. _ */ /* test7.c |o_o || | */ /* |:_/ || |_ _ ___ __ */ /* By: houtworm // \ \ __| | | \ \/ / */ /* (| | )|_| |_| |> < */ /* Created: 2023/02/21 02:48:46 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ /* Updated: 2023/02/23 15:55:58 by houtworm \___)=(___/ */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include #include int main(void) { int r; char **r7; r = 0; r7 = ft_split("split this", ' '); if (r7[0][5] != '\0') r = 1; free(r7[0]); free(r7[1]); free(r7); return (r); }