X-Git-Url: https://git.piment-noir.org/?p=TD_C.git;a=blobdiff_plain;f=TP_13%2Fexo1%2Flib%2Farray.h;h=9c06bc8eeee90c70d1f927565ca3dfd07ea2ee5e;hp=3bc6573f4af22f8ec7b758027a6d32350cd5f542;hb=884e95575f85cb863b53910d203759a5cfc68d81;hpb=e40016767464ae5f361e1be20a9bbc6858878e5e diff --git a/TP_13/exo1/lib/array.h b/TP_13/exo1/lib/array.h index 3bc6573..9c06bc8 100644 --- a/TP_13/exo1/lib/array.h +++ b/TP_13/exo1/lib/array.h @@ -1,6 +1,8 @@ #ifndef ARRAY_H #define ARRAY_H +#include "sort.h" + int create_tab(int tab[], unsigned tab_size); void free_tab(int tab[]); int concat_tab(int tab1[], unsigned tab_size1, int tab2[], unsigned tab_size2, int tab_dest[]);