-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_atoi.c
39 lines (36 loc) · 1.38 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_atoi.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aelphias <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/09/27 21:19:23 by aelphias #+# #+# */
/* Updated: 2019/10/21 16:12:05 by aelphias ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_atoi(const char *str)
{
long long rs;
int negative;
negative = 1;
rs = 0;
while (*str && (*str == ' ' || *str == '\n' || *str == '\t' ||
*str == '\v' || *str == '\f' || *str == '\r'))
++str;
if (*str == '-')
negative = -1;
if (*str == '-' || *str == '+')
++str;
while (*str && *str >= '0' && *str <= '9')
{
rs = rs * 10 + (*str - 48);
++str;
if (rs < 0 && negative > 0)
return (-1);
if (rs < 0 && negative < 0)
return (0);
}
return (rs * negative);
}