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.
29 lines
455 B
29 lines
455 B
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include "annexe/saeAnnexe.h"
|
|
#include "partie1/saeP1.h"
|
|
#include "partie2/saeP2.h"
|
|
#include "partie3/saeP3.h"
|
|
#include "partie4/saeP4.h"
|
|
|
|
int main(void)
|
|
{
|
|
VilleIUT** tiut;
|
|
int tlogi=loadIUT(tiut);
|
|
menu();
|
|
char user;
|
|
scanf("%c",&user);
|
|
switch(user){
|
|
case "C":
|
|
reset();
|
|
menuConsult();
|
|
reset();
|
|
break;
|
|
case "A":
|
|
reset();
|
|
menuAdmin(tiut,tlogi);
|
|
reset();
|
|
}
|
|
return 0;
|
|
} |