-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack_common.c
More file actions
31 lines (27 loc) · 1.08 KB
/
stack_common.c
File metadata and controls
31 lines (27 loc) · 1.08 KB
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* stack_common.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: algungor <algungor@student.42istanbul.com.t+#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2026/04/27 13:46:07 by algungor #+# #+# */
/* Updated: 2026/04/27 13:46:11 by algungor ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
void m_ss(t_stack **a, t_stack **b)
{
m_sa(a);
m_sb(b);
}
void m_rr(t_stack **a, t_stack **b)
{
m_ra(a);
m_rb(b);
}
void m_rrr(t_stack **a, t_stack **b)
{
m_rra(a);
m_rrb(b);
}