From b9f000a80cbba38b8f21c9737a42f07573ec7b91 Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 11 May 2020 16:14:38 +0200 Subject: Moved util/ft_split* in str, Added ft_memjoin and ft_memjoinf1, Modified ft_getfile so that it can read non-ascii file --- src/str/ft_strsjoinf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/str/ft_strsjoinf.c') diff --git a/src/str/ft_strsjoinf.c b/src/str/ft_strsjoinf.c index 36a2892..c1a0623 100644 --- a/src/str/ft_strsjoinf.c +++ b/src/str/ft_strsjoinf.c @@ -6,7 +6,7 @@ /* By: charles +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/04/04 14:27:33 by charles #+# #+# */ -/* Updated: 2020/04/04 23:24:24 by charles ### ########.fr */ +/* Updated: 2020/05/11 15:54:33 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -24,6 +24,6 @@ char *ft_strsjoinf(char **strs, char *delim) char *ret; ret = ft_strsjoin(strs, delim); - ft_split_destroy(strs); + ft_strsdestroy(strs); return (ret); } -- cgit