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