TP 13 exo1: Add libraries functions already written
[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
12 void sort_array(int* array, int length, criteria_cb criteria);
13
14 #endif /* SORT_H */