forked from sisittu99/push_swap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_op_one.c
85 lines (74 loc) · 1.96 KB
/
check_op_one.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
84
85
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* check_op_one.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mcerchi <mcerchi@student.42roma.it> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/26 11:13:06 by mcerchi #+# #+# */
/* Updated: 2022/02/26 14:48:02 by mcerchi ### ########.fr */
/* */
/* ************************************************************************** */
#include "./libft/libft.h"
void ft_sa_check(t_list **stack_a)
{
t_list *tmp;
t_list *tmp2;
tmp = *stack_a;
tmp2 = tmp->next;
*stack_a = tmp2;
tmp->next = tmp2->next;
tmp2->next = tmp;
return ;
}
void ft_sb_check(t_list **stack_b)
{
t_list *tmp;
t_list *tmp2;
tmp = *stack_b;
tmp2 = tmp->next;
*stack_b = tmp2;
tmp->next = tmp2->next;
tmp2->next = tmp;
return ;
}
void ft_ss_check(t_list **stack_a, t_list **stack_b)
{
t_list *tmp;
t_list *tmp2;
tmp = *stack_a;
tmp2 = tmp->next;
*stack_a = tmp2;
tmp->next = tmp2->next;
tmp2->next = tmp;
tmp = NULL;
tmp2 = NULL;
tmp = *stack_b;
tmp2 = tmp->next;
*stack_b = tmp2;
tmp->next = tmp2->next;
tmp2->next = tmp;
return ;
}
void ft_pa_check(t_list **stack_b, t_list **stack_a)
{
t_list *tmp;
if (*stack_b == NULL)
return ;
tmp = *stack_b;
*stack_b = (*stack_b)->next;
tmp->next = *stack_a;
*stack_a = tmp;
return ;
}
void ft_pb_check(t_list **stack_a, t_list **stack_b)
{
t_list *tmp;
if (*stack_a == NULL)
return ;
tmp = *stack_a;
*stack_a = (*stack_a)->next;
tmp->next = *stack_b;
*stack_b = tmp;
return ;
}