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.
|
#include "main.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
char* lireVille(FILE* fe){
|
|
char* Ville;
|
|
fscanf("%s\t", Ville);
|
|
return Ville;
|
|
}
|
|
|
|
char* lireDept(FILE* fe){
|
|
char* Dept;
|
|
fscanf("%s\n", Dept);
|
|
return Dept;
|
|
}
|
|
|
|
Liste initListe(void){return NULL;}
|
|
|