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.
20 lines
379 B
20 lines
379 B
#include "../header/sae.h"
|
|
|
|
|
|
/**
|
|
* @brief Test fonction Jean
|
|
*
|
|
*/
|
|
void testJean(void)
|
|
{
|
|
VilleIut **tIut = (VilleIut **)malloc(sizeof(VilleIut *)*5);
|
|
strcpy(tIut[0]->nom, "John");
|
|
strcpy(tIut[0]->lDept->nomDept, "Info");
|
|
strcpy(tIut[0]->lDept->resp, "Yanis");
|
|
tIut[0]->lDept->nbP = 12;
|
|
tIut[0]->lDept->suiv = NULL;
|
|
|
|
|
|
//afficheVillesIUT(tIut, 0);
|
|
}
|