TP 13 exo1: Implement all the required features.
[TD_C.git] / TP_13 / exo1 / lib / array.h
... / ...
CommitLineData
1#ifndef ARRAY_H
2#define ARRAY_H
3
4#include "sort.h"
5
6int* create_tab(int tab[], unsigned tab_size);
7void free_tab(int tab[]);
8int* concat_tab(int tab1[], unsigned tab_size1, int tab2[], unsigned tab_size2);
9int* resize_tab(int tab[], unsigned tab_size);
10int count_tab_element(int tab[], unsigned tab_size, int element);
11void sort_tab(int tab[], unsigned tab_size, criteria_cb criteria);
12
13#endif /* ARRAY_H */