aboutsummaryrefslogtreecommitdiff
path: root/src/str/ft_strsjoinf.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-05-11 16:14:38 +0200
committerCharles <sircharlesaze@gmail.com>2020-05-11 16:14:38 +0200
commitb9f000a80cbba38b8f21c9737a42f07573ec7b91 (patch)
tree7068e7188dab0a710ae79d71800b329ab655e3eb /src/str/ft_strsjoinf.c
parenta4b9cda7d6733f2b077f8586e3b3e69351e7dfba (diff)
downloadlibft-b9f000a80cbba38b8f21c9737a42f07573ec7b91.tar.gz
libft-b9f000a80cbba38b8f21c9737a42f07573ec7b91.tar.bz2
libft-b9f000a80cbba38b8f21c9737a42f07573ec7b91.zip
Moved util/ft_split* in str, Added ft_memjoin and ft_memjoinf1, Modified ft_getfile so that it can read non-ascii file
Diffstat (limited to 'src/str/ft_strsjoinf.c')
-rw-r--r--src/str/ft_strsjoinf.c4
1 files changed, 2 insertions, 2 deletions
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 <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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);
}