-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_atoi.c
executable file
Β·49 lines (45 loc) Β· 1.47 KB
/
ft_atoi.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_atoi.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: selchoi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/01/09 16:41:02 by selchoi #+# #+# */
/* Updated: 2021/01/12 00:28:26 by selchoi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include <limits.h>
int check_over_range(unsigned long long ret, int sign)
{
if (ret > LLONG_MAX - 1 && sign == -1)
return (0);
if (ret > LLONG_MAX && sign == 1)
return (-1);
return (ret * sign);
}
int ft_atoi(const char *str)
{
unsigned long long ret;
int i;
int neg;
ret = 0;
i = 0;
neg = 1;
while ((str[i] >= 9 && str[i] <= 13) || str[i] == 32)
++i;
if (str[i] == '+' || str[i] == '-')
{
if (str[i] == '-')
neg = -1;
i++;
}
while (str[i] && ft_isdigit(str[i]))
{
ret *= 10;
ret += str[i] - '0';
++i;
}
return (check_over_range(ret, neg));
}