-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrr.c
19 lines (18 loc) · 988 Bytes
/
rr.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* rr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: yst-laur <[email protected] +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/03/09 14:22:26 by yst-laur #+# #+# */
/* Updated: 2022/03/09 14:22:30 by yst-laur ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap.h"
void rr(t_stack stack)
{
ra(stack);
rb(stack);
write(1, "rr\n", 3);
}