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_is_set.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/algo/ft_is_set.c') diff --git a/src/algo/ft_is_set.c b/src/algo/ft_is_set.c index 8e45b49..3e7ae31 100644 --- a/src/algo/ft_is_set.c +++ b/src/algo/ft_is_set.c @@ -6,13 +6,14 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/19 07:17:15 by cacharle #+# #+# */ -/* Updated: 2020/01/19 08:21:12 by cacharle ### ########.fr */ +/* Updated: 2020/02/10 02:51:41 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" +#include "libft_algo.h" -t_bool ft_is_set(void *base, size_t nel, size_t width, +t_ftbool ft_is_set(void *base, size_t nel, size_t width, t_ftcompar_func compar) { size_t i; -- cgit