From c03c8d97e47a0b62a6e9f6240ea9142b454fa96b Mon Sep 17 00:00:00 2001 From: vSKAH Date: Sat, 28 Oct 2023 07:24:55 +0200 Subject: [PATCH] Edit:(vSKAH): Change header --- ft_split.c | 23 +++++------------------ 1 file changed, 5 insertions(+), 18 deletions(-) diff --git a/ft_split.c b/ft_split.c index 5df377f..fc062d4 100644 --- a/ft_split.c +++ b/ft_split.c @@ -3,13 +3,14 @@ /* ::: :::::::: */ /* ft_split.c :+: :+: :+: */ /* +:+ +:+ +:+ */ -/* By: jbadaire +#+ +:+ +#+ */ +/* By: jbadaire +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ -/* Created: 2023/01/11 10:26:30 by jbadaire #+# #+# */ -/* Updated: 2023/01/17 17:48:18 by jbadaire ### ########lyon.fr */ +/* Created: 2023/10/27 23:30:20 by jbadaire #+# #+# */ +/* Updated: 2023/10/27 23:30:20 by jbadaire ### ########.fr */ /* */ /* ************************************************************************** */ + #include "libft.h" #include @@ -85,18 +86,4 @@ char **ft_split(char const *s, char c) if (!words_list) return (NULL); return (fill_array(s, c, words_list)); -} - -//#include -//int main(void) -//{ -// char **t = ft_split(NULL, ' '); -// int index = 0; -// -// while(t[index]) -// { -// printf("%s--\n", t[index]); -// index++; -// } -// return (0); -//} +} \ No newline at end of file