summaryrefslogtreecommitdiff
path: root/ft_lstnew.c
diff options
context:
space:
mode:
authoryctct <yctct@yctct.com>2026-02-05 12:18:33 +0100
committeryctct <yctct@yctct.com>2026-02-05 12:18:33 +0100
commit472b8f20c0f74d20dbb434abce10ee86054b9975 (patch)
tree95625c0ba5a7f999c9add7f9bd55bb0f0b4dc173 /ft_lstnew.c
parent8403fab94b17bc63bc193037c8777b9074707287 (diff)
Remove testsHEADmain
Diffstat (limited to 'ft_lstnew.c')
-rw-r--r--ft_lstnew.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/ft_lstnew.c b/ft_lstnew.c
index 88194ed..b14cfe1 100644
--- a/ft_lstnew.c
+++ b/ft_lstnew.c
@@ -43,17 +43,3 @@ t_list *ft_lstnew(void *content)
return (newnode);
}
-/*
-#include <stdio.h>
-
-int main(void)
-{
- t_list *x;
-
- x = ft_lstnew("hello");
- printf("%s\n", (char*)(x-> content));
- printf("0.6%s\n", (char*)(x-> next));
- free(x);
- return (0);
-}
-*/