Skip to content

Commit

Permalink
Edit:(vSKAH): Change header
Browse files Browse the repository at this point in the history
  • Loading branch information
vSKAH committed Oct 28, 2023
1 parent ad3ab63 commit c03c8d9
Showing 1 changed file with 5 additions and 18 deletions.
23 changes: 5 additions & 18 deletions ft_split.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@
/* ::: :::::::: */
/* ft_split.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jbadaire <marvin@42.fr> +#+ +:+ +#+ */
/* By: jbadaire <[email protected].fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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 <stdlib.h>

Expand Down Expand Up @@ -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 <stdio.h>
//int main(void)
//{
// char **t = ft_split(NULL, ' ');
// int index = 0;
//
// while(t[index])
// {
// printf("%s--\n", t[index]);
// index++;
// }
// return (0);
//}
}

0 comments on commit c03c8d9

Please sign in to comment.