summaryrefslogtreecommitdiff
path: root/ft_strjoin.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_strjoin.c
parent8403fab94b17bc63bc193037c8777b9074707287 (diff)
Remove testsHEADmain
Diffstat (limited to 'ft_strjoin.c')
-rw-r--r--ft_strjoin.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/ft_strjoin.c b/ft_strjoin.c
index ecc7f9a..77551ab 100644
--- a/ft_strjoin.c
+++ b/ft_strjoin.c
@@ -28,13 +28,3 @@ char *ft_strjoin(char const *s1, char const *s2)
ft_strlcat(ptr, s2, (ft_strlen(s1) + ft_strlen(s2) + 1));
return (ptr);
}
-/*
-#include <stdio.h>
-
-int main(void)
-{
- char const s1[]= "Hello, ";
- char const s2[]= "World";
- printf("after: %s\n", ft_strjoin(s1, s2));
-}
-*/