This commit is contained in:
kinou-p 2022-01-02 19:47:13 +01:00
parent 1f446fbc51
commit 70635dd679
2 changed files with 11 additions and 0 deletions

10
sort3.c
View File

@ -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)
}
}

View File

@ -10,3 +10,4 @@
/* */
/* ************************************************************************** */
#include "push_swap.h"