diff options
author | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-01-17 19:34:53 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-01-17 19:34:53 +0100 |
commit | a287db1124beda38507739f892c085bd3654ebd7 (patch) | |
tree | c439a25efe0309de08087d439a597f84583b257f /libft/src/ft_atoi.c | |
parent | Removed libft (diff) | |
download | 42-cub3d-a287db1124beda38507739f892c085bd3654ebd7.tar.gz 42-cub3d-a287db1124beda38507739f892c085bd3654ebd7.tar.bz2 42-cub3d-a287db1124beda38507739f892c085bd3654ebd7.tar.xz 42-cub3d-a287db1124beda38507739f892c085bd3654ebd7.tar.zst 42-cub3d-a287db1124beda38507739f892c085bd3654ebd7.zip |
Added libft
Diffstat (limited to '')
-rw-r--r-- | libft/src/ft_atoi.c | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/libft/src/ft_atoi.c b/libft/src/ft_atoi.c new file mode 100644 index 0000000..4459c1d --- /dev/null +++ b/libft/src/ft_atoi.c @@ -0,0 +1,64 @@ +/* ************************************************************************** */ +/* LE - / */ +/* / */ +/* ft_atoi.c .:: .:/ . .:: */ +/* +:+:+ +: +: +:+:+ */ +/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */ +/* #+# #+ #+ #+# */ +/* Created: 2019/10/10 05:32:13 by rbousset #+# ## ## #+# */ +/* Updated: 2019/10/15 02:16:20 by rbousset ### #+. /#+ ###.fr */ +/* / */ +/* / */ +/* ************************************************************************** */ + +#include <libft.h> +#include <inttypes.h> + +static int8_t + ft_setsign(const char c) +{ + int8_t sign; + + sign = 1; + if (c == '-') + sign = -1; + return (sign); +} + +static uint8_t + ft_seti(const char *str) +{ + uint8_t i; + + i = 0; + while (ft_isspace(str[i])) + i++; + return (i); +} + +int + ft_atoi(const char *str) +{ + uint8_t i; + int8_t sign; + long nb; + + i = ft_seti(str); + nb = 0; + sign = 1; + if (str[i] == '+' || str[i] == '-') + sign = ft_setsign(str[i++]); + while (ft_isdigit(str[i])) + { + if (nb * 10 + (str[i] - 48) < nb) + { + if (sign < 0) + return (0); + return (-1); + } + nb = nb * 10 + (str[i] - 48); + i++; + } + nb *= sign; + return ((int)nb); +} |