TP 13 exo1: Implement all the required features.
[TD_C.git] / TP_13 / exo1 / lib / io.h
... / ...
CommitLineData
1#ifndef IO_H
2#define IO_H
3
4int prompt_value(const char* msg, int* result);
5int* prompt_array(int array[], unsigned* size);
6
7void display_choice_menu();
8
9int* do_concat(int array[], unsigned* size);
10void do_sort(int array[], unsigned size);
11void do_count(int array[], unsigned size);
12
13void display_array(int array[], unsigned size);
14
15#endif /* IO_H */