3c499f7947b4e4835735c25345c3a4257e404652
[TD_C.git] / TP_13 / exo1 / lib / sort.h
1 #ifndef SORT_H
2 #define SORT_H
3
4 #include <stdbool.h>
5
6 typedef bool(*s_criteria_cb)(int a, int b);
7
8 /* sort criteria */
9 bool ascending(int a, int b);
10 bool descending(int a, int b);
11 bool ascending_and_even(int a, int b);
12 bool ascending_and_odd(int a, int b);
13
14 void sort_bubble_array(int* array, unsigned length, s_criteria_cb sort_criteria);
15
16 #endif /* SORT_H */