-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_atoi.c
37 lines (34 loc) · 1.29 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_atoi.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jfreitas <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/06/30 11:23:47 by jfreitas #+# #+# */
/* Updated: 2019/11/21 11:28:28 by jfreitas ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_atoi(char const *str)
{
unsigned int res;
unsigned int neg;
neg = 1;
res = 0;
while (*str && (*str == ' ' || *str == '\n' || *str == '\t' ||
*str == '\v' || *str == '\r' || *str == '\f'))
str++;
if (*str == '-' || *str == '+')
{
if (*str == '-')
neg = -1;
str++;
}
while (*str && *str >= '0' && *str <= '9')
{
res = res * 10 + (*str - 48);
str++;
}
return (res * neg);
}