aboutsummaryrefslogtreecommitdiff
path: root/src/str/ft_strict_atoi.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-01-15 14:16:36 +0100
committerCharles <sircharlesaze@gmail.com>2020-01-15 14:16:36 +0100
commite8a7d07f1c99b5ce6210603d88098580af95fb13 (patch)
treecd442d7e351c20bcc6a6dc9f0b4619100750932a /src/str/ft_strict_atoi.c
parent496afe8e8a82d6db730bf835eb5fbe1ef3a142be (diff)
downloadlibft-e8a7d07f1c99b5ce6210603d88098580af95fb13.tar.gz
libft-e8a7d07f1c99b5ce6210603d88098580af95fb13.tar.bz2
libft-e8a7d07f1c99b5ce6210603d88098580af95fb13.zip
Fix strtol, Added list reverse functions
Diffstat (limited to 'src/str/ft_strict_atoi.c')
-rw-r--r--src/str/ft_strict_atoi.c3
1 files changed, 2 insertions, 1 deletions
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 <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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 <stdio.h>
int ft_strict_atoi(const char *s)
{
char *end;