Move callback functions into the same file
[TD_C.git] / TP_13 / exo1 / lib / array.h
index 4e587541548ad77a00712f73eb710bcbf8e1df27..b31cbc06b7c881c0a2a29741fda597fc2df47024 100644 (file)
@@ -5,11 +5,6 @@
 
 #include "sort.h"
 
-typedef bool(*c_criteria_cb)(int a);
-
-bool is_even(int a);
-bool is_odd(int a);
-
 int* create_tab(int tab[], unsigned tab_size);
 void free_tab(int tab[]);
 int* concat_tab(int tab1[], unsigned tab_size1, int tab2[], unsigned tab_size2);