blob: 7a97eae081c5097a4c0252170b40e407e336b65e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_atoi.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/14 17:06:22 by rbousset #+# #+# */
/* Updated: 2020/02/14 17:07:24 by rbousset ### ########lyon.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);
}
|