blob: 3e7ae317717fa5d149c3beb02fdeab453ee0af4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_is_set.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/01/19 07:17:15 by cacharle #+# #+# */
/* Updated: 2020/02/10 02:51:41 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
#include "libft_algo.h"
t_ftbool ft_is_set(void *base, size_t nel, size_t width,
t_ftcompar_func compar)
{
size_t i;
if (nel < 2)
return (TRUE);
ft_qsort(base, nel, width, compar);
i = 0;
while (i < nel - 1)
{
if (compar(base + (i * width), base + ((i + 1) * width)) == 0)
return (FALSE);
i++;
}
return (TRUE);
}
|