TP 13 exo1: Implement all the required features.
[TD_C.git] / TP_13 / exo1 / lib / io.h
index 21a33e08fc00879ae724cedeabe84aaeddc3d718..13f14e0d80b83f997ee9c37a572e6f07679c7492 100644 (file)
@@ -4,6 +4,12 @@
 int prompt_value(const char* msg, int* result);
 int* prompt_array(int array[], unsigned* size);
 
-void display_array(int* array, int size);
+void display_choice_menu();
+
+int* do_concat(int array[], unsigned* size);
+void do_sort(int array[], unsigned size);
+void do_count(int array[], unsigned size);
+
+void display_array(int array[], unsigned size);
 
 #endif /* IO_H */