-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_atoi.c
41 lines (38 loc) · 1.35 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_atoi.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ysaito <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/06/23 10:19:28 by ysaito #+# #+# */
/* Updated: 2021/11/01 20:37:51 by ysaito ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_atoi(const char *str)
{
long num;
int negative;
int count;
num = 0;
negative = 1;
count = 0;
while (*str == ' ' || *str == '\t' || *str == '\n' \
|| *str == '\v' || *str == '\f' || *str == '\r')
str++;
if (*str == '-' || *str == '+')
{
if (*str == '-')
negative = -1;
str++;
}
if (!('0' <= *str && *str <= '9'))
return (0);
while ('0' <= *str && *str <= '9')
{
num = num * 10 + (*str - '0');
str++;
}
return (num * negative);
}