#ifndef _MATRICE_H #define _MATRICE_H typedef struct Case *Case; typedef struct Ligne *Ligne; typedef struct Matrice *Matrice; Case CaseAllouer(int lig,int col, void *formule); #endif