From 85423f4211a4fb7144ddbc463618ee20ea5e7812 Mon Sep 17 00:00:00 2001 From: hugogogo Date: Thu, 14 May 2026 00:06:40 +0200 Subject: [PATCH] removing debug print --- srcs/ft_strjoin_static.c | 1 - 1 file changed, 1 deletion(-) diff --git a/srcs/ft_strjoin_static.c b/srcs/ft_strjoin_static.c index 0849a1a..dc2ad7d 100644 --- a/srcs/ft_strjoin_static.c +++ b/srcs/ft_strjoin_static.c @@ -27,7 +27,6 @@ size_t ft_strjoin_static(char *dst, size_t dst_size, const char **srcs, size_t n ft_printf("--ft_strlen(srcs[%i]):%i--", i, ft_strlen(srcs[i])); i++; } - ft_printf("{dst_size:%li,srcs[0]:%s,srcs[1]:%s,total_len:%i}", dst_size, srcs[0], srcs[1], total_len); // debug // Check if buffer is large enough (include space for '\0') if (total_len + 1 > dst_size)