From 4800d3ca472058f0161970aa55c6debb453e5d00 Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 10 Feb 2020 03:58:29 +0100 Subject: Fixing merge compilation error, Added ft_mergesort --- src/algo/ft_qsort.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/algo/ft_qsort.c') diff --git a/src/algo/ft_qsort.c b/src/algo/ft_qsort.c index 8c125a1..9bcfcdf 100644 --- a/src/algo/ft_qsort.c +++ b/src/algo/ft_qsort.c @@ -6,11 +6,11 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/19 07:25:51 by cacharle #+# #+# */ -/* Updated: 2020/01/19 08:28:32 by cacharle ### ########.fr */ +/* Updated: 2020/02/10 02:55:14 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ -#include "libft.h" +#include "libft_algo.h" static t_ftrange ft_range_new(int lo, int hi) { -- cgit