-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.c
83 lines (75 loc) · 1.8 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vsimeono <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/01/23 16:01:25 by vsimeono #+# #+# */
/* Updated: 2022/02/23 15:08:51 by vsimeono ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
long ft_atoi(const char *str)
{
int i;
long num;
int sign;
i = 0;
sign = 1;
num = 0;
while ((*(str + i) >= 9 && *(str + i) <= 13) || (*(str + i) == ' '))
{
i++;
}
if (*(str + i) == '-' || *(str + i) == '+')
{
if (*(str + i) == '-')
{
sign = sign * (-1);
}
i++;
}
while ((*(str + i) >= 48 && *(str + i) <= 57))
{
num = (num * 10) + (*(str + i) - '0');
i++;
}
return (num * sign);
}
void ft_lstadd_back(t_stack **lst, t_stack *new)
{
t_stack *temp;
temp = *lst;
if (*lst)
{
while (temp->next != NULL)
temp = temp->next;
temp->next = new;
}
else
*lst = new;
}
int ft_isdigit(int c)
{
if (c >= '0' && c <= '9')
return (1);
return (0);
}
int len_stack(t_stack **stack)
{
t_stack *temp;
int counter;
temp = *stack;
counter = 0;
if (*stack != NULL)
{
counter = 1;
while (temp->next != NULL)
{
temp = temp->next;
counter++;
}
}
return (counter);
}