diff --git a/builds/algo.o b/builds/algo.o index ef8b73d..bb713ba 100644 Binary files a/builds/algo.o and b/builds/algo.o differ diff --git a/builds/algo_bubble_sort.o b/builds/algo_bubble_sort.o index 9eebf0c..a898837 100644 Binary files a/builds/algo_bubble_sort.o and b/builds/algo_bubble_sort.o differ diff --git a/builds/print.o b/builds/print.o index f674759..2536b4e 100644 Binary files a/builds/print.o and b/builds/print.o differ diff --git a/builds/push.o b/builds/push.o index 36bb4f9..82d7e64 100644 Binary files a/builds/push.o and b/builds/push.o differ diff --git a/builds/push_swap.o b/builds/push_swap.o index dd821ee..b1eccf6 100644 Binary files a/builds/push_swap.o and b/builds/push_swap.o differ diff --git a/builds/reverse_rotate.o b/builds/reverse_rotate.o index 9f60562..4d163fa 100644 Binary files a/builds/reverse_rotate.o and b/builds/reverse_rotate.o differ diff --git a/builds/rotate.o b/builds/rotate.o index 6d42092..3fac3c2 100644 Binary files a/builds/rotate.o and b/builds/rotate.o differ diff --git a/builds/stop.o b/builds/stop.o index 22bffca..29b1228 100644 Binary files a/builds/stop.o and b/builds/stop.o differ diff --git a/builds/swap.o b/builds/swap.o index 4e20baa..6b4afbb 100644 Binary files a/builds/swap.o and b/builds/swap.o differ diff --git a/push_swap b/push_swap index 8fcaa11..9986793 100755 Binary files a/push_swap and b/push_swap differ diff --git a/srcs/push_swap.c b/srcs/push_swap.c index 447c0b4..c025223 100644 --- a/srcs/push_swap.c +++ b/srcs/push_swap.c @@ -35,8 +35,10 @@ t_stack *init_stack(int ac, char **av) return (start); } -// the chained list "solution" is created with specials first two elements : -// they are pointers to stack a and b, so it can be accessed by fill_solution() +/* +** the chained list "solution" is created with specials first two elements : +** they are pointers to stack a and b, so it can be accessed by fill_solution() +*/ t_list *launch_algo(t_stack **a, t_stack **b, int flag) { t_list *solution;