From 19964c7a382bcc5c0f09b1233b54b559c44e3a28 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 5 Feb 2020 01:29:21 +0100 Subject: fixing ft_split_strict --- libft.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libft.h') diff --git a/libft.h b/libft.h index 49996c3..99c71db 100644 --- a/libft.h +++ b/libft.h @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 09:45:02 by cacharle #+# #+# */ -/* Updated: 2020/02/04 04:41:08 by cacharle ### ########.fr */ +/* Updated: 2020/02/04 20:23:20 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -15,6 +15,7 @@ # include # include +# include # define TRUE 1 # define FALSE 0 @@ -82,6 +83,7 @@ char *ft_substr(char const *s, unsigned int start, size_t len); char *ft_strjoin(char const *s1, char const *s2); char *ft_strtrim(char const *s1, char const *set); char **ft_split(char const *s, char c); +char **ft_split_strict(char const *s, char c); char *ft_itoa(int n); void ft_putendl(char *s); void ft_putchar(char c); -- cgit