You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
226 B

#include "Msae.h"
int main(void)
{
VilleIUT *tiut[100];
int tLog;
tLog = chargement(tiut,100);
if(tLog < 0)
{
printf("Le programme ne peut pas fonctionner\n");
exit(1);
}
afficheDeptDesIUT(tiut,tLog);
return 0;
}