TP 13 exo2: Implement the missing bits to do a full game.
[TD_C.git] / TP_13 / exo1 / lib / io.h
index 13f14e0d80b83f997ee9c37a572e6f07679c7492..6dfc77aa392459b2016b0cf7ab87bc5af6c5dadc 100644 (file)
@@ -3,12 +3,14 @@
 
 int prompt_value(const char* msg, int* result);
 int* prompt_array(int array[], unsigned* size);
+void handle_prompt_error(int errno);
 
 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);