From 472b8f20c0f74d20dbb434abce10ee86054b9975 Mon Sep 17 00:00:00 2001 From: yctct Date: Thu, 5 Feb 2026 12:18:33 +0100 Subject: Remove tests --- ft_split.c | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'ft_split.c') diff --git a/ft_split.c b/ft_split.c index b5d8a8b..af73f73 100644 --- a/ft_split.c +++ b/ft_split.c @@ -79,27 +79,3 @@ char **ft_split(char const *s, char c) return (a); } -/* -#include - -int main(void) -{ - char **b; - int i; - char *s2; - - // char *s= "xxxhelloxxallxxofxyoux"; - s2 = " code 42 "; - // char **a; - // a = ft_split(s, 'x'); - b = ft_split(s2, ' '); - i = 0; - while (b[i]) - { - printf("b[%i]: %s\n", i, b[i]); - free(b[i]); - i++; - } - free(b); -} -*/ -- cgit v1.2.3