From 70635dd6794a6ea082bae62bafe5695ea508ecf4 Mon Sep 17 00:00:00 2001 From: kinou-p Date: Sun, 2 Jan 2022 19:47:13 +0100 Subject: [PATCH] test --- sort3.c | 10 ++++++++++ sort5.c | 1 + 2 files changed, 11 insertions(+) diff --git a/sort3.c b/sort3.c index d34268a..d8a24d2 100644 --- a/sort3.c +++ b/sort3.c @@ -10,3 +10,13 @@ /* */ /* ************************************************************************** */ +#include "push_swap.h" + +void sort3(t_list *list) +{ + if (list->nbr > list->next->nbr && list->nbr > list->next->next->nbr) + { + if (list->next->nbr < list->next->next->nbr) + + } +} \ No newline at end of file diff --git a/sort5.c b/sort5.c index 5f5380f..d99e8f9 100644 --- a/sort5.c +++ b/sort5.c @@ -10,3 +10,4 @@ /* */ /* ************************************************************************** */ +#include "push_swap.h" \ No newline at end of file