From fe7b8336097b2935ae340ce43034a93d6b096b13 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 21 Jan 2020 11:09:20 +0100 Subject: WIP: better algo with 'sorting frame' --- src/push_swap/push_swap.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/push_swap/push_swap.h') diff --git a/src/push_swap/push_swap.h b/src/push_swap/push_swap.h index e22fa9a..9426cca 100644 --- a/src/push_swap/push_swap.h +++ b/src/push_swap/push_swap.h @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/19 09:10:11 by cacharle #+# #+# */ -/* Updated: 2020/01/19 13:16:06 by cacharle ### ########.fr */ +/* Updated: 2020/01/21 10:20:04 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -29,5 +29,6 @@ void push_swap_sort(t_stack *main, t_stack *tmp); void stack_swap_print(t_stack *stack); void stack_rotate_print(t_stack *stack); void stack_push_to_print(t_stack *from, t_stack *to); +void stack_reverse_rotate_print(t_stack *stack); #endif -- cgit