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.
31 lines
530 B
31 lines
530 B
#include "../header/sae.h"
|
|
|
|
|
|
|
|
int main(void)
|
|
{
|
|
|
|
// #ifdef _WIN32
|
|
// color
|
|
// #endif
|
|
//guillaume();
|
|
//testCharge();
|
|
Globale();
|
|
//testJean();
|
|
return 0;
|
|
|
|
//system("color 01");
|
|
|
|
/*
|
|
ListeDept ldept;
|
|
VilleIut iut;
|
|
|
|
//TESTS des fonctions de manipulation des structures VilleIut et ListeDept
|
|
iut.ldept = listenouv();
|
|
strcpy(iut.nom, "Clermont Ferrand");
|
|
iut.ldept = ajouterDept(iut.ldept, "Chimie", "Henri Laserre", 80);
|
|
iut.ldept = ajouterDept(iut.ldept, "Chimie", "Henri Laserre", 80);
|
|
afficherListe(iut.ldept);
|
|
*/
|
|
}
|