aboutsummaryrefslogtreecommitdiff
path: root/src/common/action.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/action.h')
-rw-r--r--src/common/action.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/common/action.h b/src/common/action.h
deleted file mode 100644
index d458c49..0000000
--- a/src/common/action.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef ACTION_H
-# define ACTION_H
-
-# include "stack.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);
-
-
-#endif