TP 13 exo1: Implement more asked features and test them
[TD_C.git] / TP_13 / exo1 / lib / io.h
1 #ifndef IO_H
2 #define IO_H
3
4 int prompt_value(const char* msg, int* result);
5 int* prompt_array(int array[], unsigned* size);
6
7 void display_array(int* array, int size);
8
9 #endif /* IO_H */