From e8a7d07f1c99b5ce6210603d88098580af95fb13 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 15 Jan 2020 14:16:36 +0100 Subject: Fix strtol, Added list reverse functions --- src/str/ft_strict_atoi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/str/ft_strict_atoi.c') diff --git a/src/str/ft_strict_atoi.c b/src/str/ft_strict_atoi.c index c25ebdd..6156b03 100644 --- a/src/str/ft_strict_atoi.c +++ b/src/str/ft_strict_atoi.c @@ -6,12 +6,13 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/15 10:06:29 by cacharle #+# #+# */ -/* Updated: 2020/01/15 11:32:17 by cacharle ### ########.fr */ +/* Updated: 2020/01/15 14:09:03 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" +#include int ft_strict_atoi(const char *s) { char *end; -- cgit