TP 13 exo1: Add more library functions
[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(*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, criteria_cb criteria);
15
16 #endif /* SORT_H */