diff --git a/builds/push_swap.o b/builds/push_swap.o index 09ad998..6cc732c 100644 Binary files a/builds/push_swap.o and b/builds/push_swap.o differ diff --git a/push_swap b/push_swap index eba674a..efcd900 100755 Binary files a/push_swap and b/push_swap differ diff --git a/srcs/push_swap.c b/srcs/push_swap.c index be3fe5f..a851cf0 100644 --- a/srcs/push_swap.c +++ b/srcs/push_swap.c @@ -64,11 +64,12 @@ t_list *launch_algo(t_stack *a) b = NULL; solution = ft_lstnew(&a); ft_lstadd_back(&solution, ft_lstnew(&b)); - print_test(solution, "launch_algo "); +print_test(solution, "launch_algo "); fill_solution(solution, ft_strdup("start")); - print_test(solution, "launch_algo (after fill) "); +print_test(solution, "launch_algo (after fill) "); hugo_sort(&a, &b, solution); //bubble_sort(&a, &b, solution); +print_test(solution, "launch_algo (bfr return) "); return (solution); }