#ifndef TABLEAU_H #define TABLEAU_H #include <stdlib.h> #include <stdio.h> // #include "tableau.c" typedef struct { int *valeurs; int taille; } tableau; extern tableau t; //Il faut déclarer la variable t comme extern #endif