remove recurssive function + commented main

This commit is contained in:
David Gailleton
2025-11-11 13:49:56 +01:00
parent c4e4c7c141
commit c722e2b87d
18 changed files with 93 additions and 140 deletions

View File

@@ -6,7 +6,7 @@
/* By: dgaillet <dgaillet@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/11/08 17:46:08 by dgaillet #+# #+# */
/* Updated: 2025/11/08 17:47:46 by dgaillet ### ########lyon.fr */
/* Updated: 2025/11/11 12:25:15 by dgaillet ### ########lyon.fr */
/* */
/* ************************************************************************** */
@@ -16,5 +16,5 @@
void ft_putendl_fd(char *s, int fd)
{
ft_putstr_fd(s, fd);
write(fd, "\n", 1);
ft_putchar_fd('\n', fd);
}