From 57ae398fc76f5dc53a1a62ceda1b72445273da86 Mon Sep 17 00:00:00 2001 From: Cabergs Charles Date: Wed, 3 Jul 2019 16:37:50 +0200 Subject: c00 --- c00/ex04/ft_is_negative.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'c00/ex04') diff --git a/c00/ex04/ft_is_negative.c b/c00/ex04/ft_is_negative.c index 58c1b60..6a5f306 100644 --- a/c00/ex04/ft_is_negative.c +++ b/c00/ex04/ft_is_negative.c @@ -6,14 +6,12 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/02 22:43:22 by cacharle #+# #+# */ -/* Updated: 2019/07/02 22:50:01 by cacharle ### ########.fr */ +/* Updated: 2019/07/03 14:27:26 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include -void ft_is_negative(int n); - void ft_is_negative(int n) { char negative_char; @@ -26,11 +24,3 @@ void ft_is_negative(int n) else write(1, &positive_char, 1); } - -int main(void) -{ - ft_is_negative(-1); - ft_is_negative(1); - ft_is_negative(0); - return (0); -} -- cgit