#include "tp12.h" void testCharge(void) { Mat *tab[50]; int nb; char nomFich[20]; printf("Donnez le nom du fichier :\n"); scanf("%s", nomFich); nb = chargeFmatieres(nomFich, tab, 50); if(nb < 0) return; afficheTmat(tab, nb); } int main(void) { //testCharge(); global(); return 0; }