-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_atoi.c
48 lines (44 loc) · 1.4 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_atoi.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ael-haib <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/09 15:45:55 by ael-haib #+# #+# */
/* Updated: 2024/02/21 19:34:40 by ael-haib ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_atoi(const char *str)
{
int sign;
int number;
sign = 1;
number = 0;
while (*str == ' ' || *str == '\r' || *str == '\t' || *str == '\n'
|| *str == '\v' || *str == '\f')
str++;
if (*str == '+' || *str == '-')
{
if (*str == '-')
sign = -1;
str++;
}
while (*str >= '0' && *str <= '9')
{
number *= 10;
number += (*str - '0');
str++;
}
return (number * sign);
}
/*
int main(void)
{
char *s;
s = " 2147483647";
printf("%d\n", ft_atoi(s));
printf("%d", atoi(s));
return (0);
} */