-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_atoi.c
52 lines (49 loc) · 1.73 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
49
50
51
52
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_atoi.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: estettle <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/09/27 21:46:02 by estettle #+# #+# */
/* Updated: 2024/10/10 21:18:53 by estettle ### ########.fr */
/* */
/* ************************************************************************** */
/**
* @brief Convers a string into its integer representation.
* This function accepts any number of white space (isspace(3)) as a suffix,
* as well as one minus (-) or plus (-) sign.
*
* @param str The string to convert.
* @return The converted string.
*/
int ft_atoi(const char *str)
{
int i;
int sign;
int converted;
i = 0;
sign = 1;
converted = 0;
while (str[i] == ' ' || (str[i] >= 9 && str[i] <= 13))
i++;
if (str[i] == '-' || str[i] == '+')
if (str[i++] == '-')
sign = -sign;
while (str[i] >= '0' && str[i] <= '9')
{
converted += str[i++] - '0';
if (str[i] >= '0' && str[i] <= '9')
converted *= 10;
}
return (converted * sign);
}
/*
#include <stdio.h>
int main(void)
{
printf("%d\n", ft_atoi("+100000"));
printf("%d\n", ft_atoi("-123THERE IS A NYANCAT UNDER YOUR BED"));
printf("%d\n", atoi("-123THERE IS A NYANCAT UNDER YOUR BED"));
}
*/