Commit f1a909b7030d010951221b521309fcf6ca152664

Authored by rsimonin
1 parent 35bdc271

afficahge

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
@@ -19,8 +19,7 @@ typedef struct dico { @@ -19,8 +19,7 @@ typedef struct dico {
19 19
20 int calculcase(char c); 20 int calculcase(char c);
21 21
22 -bool est_vide(struct arbre *arbre);  
23 - 22 +bool mot_existe(struct arbre *monarbre,char *mot,int i);
24 23
25 void ini_dico(struct dico *pt_dico); 24 void ini_dico(struct dico *pt_dico);
26 25
@@ -28,7 +27,7 @@ void creation_arbre(Arbre **ppt_arbre,char c); @@ -28,7 +27,7 @@ void creation_arbre(Arbre **ppt_arbre,char c);
28 27
29 void ajout_mot(struct arbre **arbrecourant,char *mot,int i); 28 void ajout_mot(struct arbre **arbrecourant,char *mot,int i);
30 29
31 -void charger_arbre(FILE *fp, struct dico **ppt_dico); 30 +void charger_dico(FILE *fp, struct dico **ppt_dico);
32 31
33 32
34 void free_arbre(struct arbre *pt_arbre); 33 void free_arbre(struct arbre *pt_arbre);
@@ -39,5 +38,6 @@ void affiche_arbre(struct arbre *arbre); @@ -39,5 +38,6 @@ void affiche_arbre(struct arbre *arbre);
39 38
40 void affiche_dico(struct dico *dico); 39 void affiche_dico(struct dico *dico);
41 40
  41 +void analyse_fichier(FILE *fp,Dico *pt_dico, int *nb_t, int *nb_f);
42 42
43 43