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 --- include/libft_str.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'include/libft_str.h') diff --git a/include/libft_str.h b/include/libft_str.h index 83c4428..383c393 100644 --- a/include/libft_str.h +++ b/include/libft_str.h @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/31 10:39:22 by cacharle #+# #+# */ -/* Updated: 2020/05/10 21:05:21 by charles ### ########.fr */ +/* Updated: 2020/05/11 15:52:40 by charles ### ########.fr */ /* */ /* ************************************************************************** */ @@ -17,7 +17,6 @@ # include # include "libft_ctype.h" # include "libft_mem.h" -# include "libft_util.h" typedef enum { @@ -93,6 +92,8 @@ bool ft_fnmatch(const char *pattern, const char *string); char *ft_strsjoin(char **strs, char *delim); char *ft_strsjoinf(char **strs, char *delim); +void *ft_strsdestroy(char **strs); +size_t ft_strslen(char **strs); /* ** bloat ? -- cgit