Commit 20cb4a117b6c0ad68d39560cee6df7c0661efd79

Authored by rsimonin
1 parent f1a909b7

modif_affichage

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
@@ -34,11 +34,11 @@ int calculcase(char c) @@ -34,11 +34,11 @@ int calculcase(char c)
34 34
35 bool mot_existe(struct arbre *monarbre,char *mot,int i){ 35 bool mot_existe(struct arbre *monarbre,char *mot,int i){
36 if (monarbre==NULL){ 36 if (monarbre==NULL){
37 - printf("%s n'est pas dans le dictionnaire\n",mot); 37 + //printf("%s n'est pas dans le dictionnaire\n",mot);
38 return false; 38 return false;
39 } 39 }
40 if (mot[i+1]=='\0'){ 40 if (mot[i+1]=='\0'){
41 - printf("%s %d\n",mot, monarbre->finmot); 41 + //printf("%s %d\n",mot, monarbre->finmot);
42 return monarbre->finmot; 42 return monarbre->finmot;
43 } 43 }
44 i++; 44 i++;
@@ -47,7 +47,7 @@ bool mot_existe(struct arbre *monarbre,char *mot,int i){ @@ -47,7 +47,7 @@ bool mot_existe(struct arbre *monarbre,char *mot,int i){
47 47
48 void ini_dico(struct dico *pt_dico) 48 void ini_dico(struct dico *pt_dico)
49 { 49 {
50 - printf("Initialisation du dictionnaire\n"); 50 + //printf("Initialisation du dictionnaire\n");
51 for(int i=0;i<TAILLE;i++){ 51 for(int i=0;i<TAILLE;i++){
52 pt_dico->alpha[i]=NULL; 52 pt_dico->alpha[i]=NULL;
53 } 53 }