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