18 lines
384 B
C
18 lines
384 B
C
#include <stdio.h>
|
|
|
|
int ft_is_sort(int *tab, int length, int(*f)(int, int));
|
|
|
|
int ft_comp(int i, int j)
|
|
{
|
|
return (i-j);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
int sorted_tab[4] = {14, 27, 42, 12};
|
|
int nonsorted_tab[4] = {14, 27, 42, 52};
|
|
int sorted = ft_is_sort(sorted_tab, 4, &ft_comp);
|
|
int nonsorted = ft_is_sort(nonsorted_tab, 4, &ft_comp);
|
|
printf("%i, %i", sorted, nonsorted);
|
|
return 0;
|
|
}
|