aboutsummaryrefslogtreecommitdiff
path: root/src/common/action.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-01-14 18:50:02 +0100
committerCharles <sircharlesaze@gmail.com>2020-01-14 18:50:02 +0100
commitf061613650f5e7c5e260a4d9a1ca1b1d80ca2f2c (patch)
treef66480fb58bf9780a074809af09705bfc4cc94c7 /src/common/action.c
parent535ce22f99694460f32030db9655206a9341c6da (diff)
downloadpush_swap-f061613650f5e7c5e260a4d9a1ca1b1d80ca2f2c.tar.gz
push_swap-f061613650f5e7c5e260a4d9a1ca1b1d80ca2f2c.tar.bz2
push_swap-f061613650f5e7c5e260a4d9a1ca1b1d80ca2f2c.zip
Added checker base
Diffstat (limited to 'src/common/action.c')
-rw-r--r--src/common/action.c56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/common/action.c b/src/common/action.c
index e69de29..bfbe436 100644
--- a/src/common/action.c
+++ b/src/common/action.c
@@ -0,0 +1,56 @@
+#include "common.h"
+
+void swap_a(t_stack *a)
+{
+
+}
+
+void swap_b(t_stack *b)
+{
+
+}
+
+void swap_both(t_stack *a, t_stack *b)
+{
+
+}
+
+void push_a(t_stack *a, t_stack *b)
+{
+
+}
+
+void push_b(t_stack *b, t_stack *a)
+{
+
+}
+
+void rotate_a(t_stack *a)
+{
+
+}
+
+void rotate_b(t_stack *b)
+{
+
+}
+
+void rotate_both(t_stack *a, t_stack *b)
+{
+
+}
+
+void reverse_rotate_a(t_stack *a)
+{
+
+}
+
+void reverse_rotate_b(t_stack *b)
+{
+
+}
+
+void reverse_rotate_both(t_stack *a, t_stack *b)
+{
+
+}