blob: 7afed9c0c2aa3d59a5e98e08b99e511271b0d643 (
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
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_is_sort.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cacharle <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/07/16 21:39:43 by cacharle #+# #+# */
/* Updated: 2019/07/17 16:34:13 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
int ft_is_sort(int *tab, int length, int(*f)(int, int))
{
int i;
i = 0;
while (i < length - 1)
{
if ((*f)(tab[i], tab[i + 1]) > 0)
return (0);
i++;
}
return (1);
}
|