aboutsummaryrefslogtreecommitdiff
path: root/src/str/ft_strtol.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-01-17 10:56:16 +0100
committerCharles <sircharlesaze@gmail.com>2020-01-17 10:56:16 +0100
commitfe37597119353ce183fc404417b81bd4702f64b7 (patch)
treefaa20a8352092c062e2fd272fff2104d9f2ddb3f /src/str/ft_strtol.c
parent2e5ca2ab6276b7b24895ade28e1533356ef523dc (diff)
downloadlibft-fe37597119353ce183fc404417b81bd4702f64b7.tar.gz
libft-fe37597119353ce183fc404417b81bd4702f64b7.tar.bz2
libft-fe37597119353ce183fc404417b81bd4702f64b7.zip
Splited include like src/, Adding feature toggle protection in header
Diffstat (limited to 'src/str/ft_strtol.c')
-rw-r--r--src/str/ft_strtol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/str/ft_strtol.c b/src/str/ft_strtol.c
index 0fb5261..e5ce552 100644
--- a/src/str/ft_strtol.c
+++ b/src/str/ft_strtol.c
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/15 10:26:45 by cacharle #+# #+# */
-/* Updated: 2020/01/15 14:15:40 by cacharle ### ########.fr */
+/* Updated: 2020/01/17 10:54:41 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -51,7 +51,7 @@ static long errno_return(int err)
long ft_strtol(const char *str, char **endptr, int base)
{
- t_bool is_negative;
+ t_ftbool is_negative;
long long nb;
char base_str[37];