From eb9c0e734b6805f6f60af124dd0f647c5a2a81e6 Mon Sep 17 00:00:00 2001 From: Timo Schmidt Date: Sun, 19 Mar 2023 02:12:44 +0100 Subject: [PATCH] Remove ft_putchar declaration --- include/ft_lib.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/ft_lib.h b/include/ft_lib.h index 1fbc386..2982d2c 100644 --- a/include/ft_lib.h +++ b/include/ft_lib.h @@ -6,7 +6,7 @@ /* By: tischmid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2023/03/18 22:35:00 by tischmid #+# #+# */ -/* Updated: 2023/03/18 23:44:07 by tischmid ### ########.fr */ +/* Updated: 2023/03/19 00:56:29 by tischmid ### ########.fr */ /* */ /* ************************************************************************** */ @@ -15,7 +15,6 @@ char *ft_strcpy(char *s1, char *s2); char *ft_strcat(char *s1, char *s2); -void ft_putchar(char c); void ft_putstr(char *str); void ft_putnbr(int nb); int ft_atoi(char *str);