From 90076f97a1de6b60968e98d6c7a8b520ebda3c8e Mon Sep 17 00:00:00 2001 From: Cabergs Charles Date: Tue, 9 Jul 2019 10:23:25 +0200 Subject: c07/c08 start, c05 faster, better, stronger --- c05/ex00/ft_iterative_factorial.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'c05/ex00') diff --git a/c05/ex00/ft_iterative_factorial.c b/c05/ex00/ft_iterative_factorial.c index 3773b9d..c8f4a35 100644 --- a/c05/ex00/ft_iterative_factorial.c +++ b/c05/ex00/ft_iterative_factorial.c @@ -6,14 +6,13 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/06 16:48:21 by cacharle #+# #+# */ -/* Updated: 2019/07/08 12:06:59 by cacharle ### ########.fr */ +/* Updated: 2019/07/08 17:22:07 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ int ft_iterative_factorial(int nb) { int acc; - int i; if (nb < 0) return (0); -- cgit