summaryrefslogtreecommitdiffstats
path: root/libft/ft_atoi.c
blob: 8903606ebee564d4347421d9d2323786868c8674 (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* ************************************************************************** */
/*                                                          LE - /            */
/*                                                              /             */
/*   ft_atoi.c                                        .::    .:/ .      .::   */
/*                                                 +:+:+   +:    +:  +:+:+    */
/*   By: rbousset <marvin@le-101.fr>                +:+   +:    +:    +:+     */
/*                                                 #+#   #+    #+    #+#      */
/*   Created: 2019/10/10 05:32:13 by rbousset     #+#   ##    ##    #+#       */
/*   Updated: 2019/10/15 02:16:20 by rbousset    ###    #+. /#+    ###.fr     */
/*                                                         /                  */
/*                                                        /                   */
/* ************************************************************************** */

#include "libft.h"
#include <inttypes.h>

static uint8_t
	ft_isaspace(int c)
{
	if (c == '\t' ||
			c == '\n' ||
			c == '\v' ||
			c == '\f' ||
			c == '\r' ||
			c == ' ')
		return (1);
	return (0);
}

static int8_t
	ft_setsign(const char c)
{
	int8_t	sign;

	sign = 1;
	if (c == '-')
		sign = -1;
	return (sign);
}

static uint8_t
	ft_seti(const char *str)
{
	uint8_t	i;

	i = 0;
	while (ft_isaspace(str[i]))
		i++;
	return (i);
}

int
	ft_atoi(const char *str)
{
	uint8_t	i;
	int8_t	sign;
	long	nb;

	if (!str || !*str)
		return (0);
	i = ft_seti(str);
	nb = 0;
	sign = 1;
	if (str[i] == '+' || str[i] == '-')
		sign = ft_setsign(str[i++]);
	while (ft_isdigit(str[i]))
	{
		if (nb * 10 + (str[i] - 48) < nb)
		{
			if (sign < 0)
				return (0);
			return (-1);
		}
		nb = nb * 10 + (str[i] - 48);
		i++;
	}
	nb *= sign;
	return ((int)nb);
}