-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalgo_utils.c
61 lines (55 loc) · 1.46 KB
/
algo_utils.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
53
54
55
56
57
58
59
60
61
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* algo_utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rd-agost <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/05/26 14:55:18 by rd-agost #+# #+# */
/* Updated: 2024/06/24 17:28:40 by rd-agost ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
int ft_absol(int n)
{
if (n < 0)
return (n * -1);
return (n);
}
int ft_isdigit(char c)
{
if (c >= '0' && c <= '9')
return (1);
else
return (0);
}
int ft_plusminus(char c)
{
return (c == '-' || c == '+');
}
int ft_atoi(const char *str)
{
int i;
int sign;
int result;
int tmp;
i = 0;
sign = 1;
result = 0;
if (str[i] == '-')
{
sign = -1;
i++;
}
else if (str[i] == '+')
i++;
while (ft_isdigit(str[i]))
{
tmp = result;
result = result * 10 + str[i] - '0';
if (result / 10 != tmp)
return (0);
i++;
}
return (result * sign);
}