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.
35 lines
650 B
35 lines
650 B
#include<stdio.h>
|
|
#include<stdlib.h>
|
|
#include<string.h>
|
|
#include<stdbool.h>
|
|
|
|
//################ Types de structures ###############
|
|
|
|
typedef struct maillonDept
|
|
{
|
|
char dept[31];
|
|
int nbP;
|
|
char respAd[31];
|
|
struct mailllonDept *suiv;
|
|
|
|
}MaillonDept,*ListeDept;
|
|
|
|
typedef struct
|
|
{
|
|
char nom[31];
|
|
ListeDept *lDept;
|
|
|
|
}VilleIUT;
|
|
|
|
//################ Fonctions communes #################
|
|
|
|
void clearpage(void);
|
|
int rechercheIUT(VilleIUT *tiut[], int tLog, char ville[], char *trouve);
|
|
|
|
//################ Fonction Menu #####################
|
|
|
|
void menuAdmin(VilleIUT *tiut[], int *tLog, int tMax);
|
|
void menuCandidat(VilleIUT *tiut[], int *tLog, int tMax);
|
|
|
|
|