TP 13 exo1: Implement array resizing
[TD_C.git] / TP_13 / exo1 / lib / io.h
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..24de1b1613de17b5f65833080932824dc423de4f 100644 (file)
@@ -0,0 +1,16 @@
+#ifndef IO_H
+#define IO_H
+
+int prompt_value(const char* msg, int* result);
+int* prompt_array(int array[], unsigned* 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 do_resize(int array[], unsigned* size);
+
+void display_array(int array[], unsigned size);
+
+#endif /* IO_H */