diff --git a/arbre.c b/arbre.c index bef10a2..f7c7ad8 100644 --- a/arbre.c +++ b/arbre.c @@ -34,11 +34,11 @@ int calculcase(char c) bool mot_existe(struct arbre *monarbre,char *mot,int i){ if (monarbre==NULL){ - printf("%s n'est pas dans le dictionnaire\n",mot); + //printf("%s n'est pas dans le dictionnaire\n",mot); return false; } if (mot[i+1]=='\0'){ - printf("%s %d\n",mot, monarbre->finmot); + //printf("%s %d\n",mot, monarbre->finmot); return monarbre->finmot; } i++; @@ -47,7 +47,7 @@ bool mot_existe(struct arbre *monarbre,char *mot,int i){ void ini_dico(struct dico *pt_dico) { - printf("Initialisation du dictionnaire\n"); + //printf("Initialisation du dictionnaire\n"); for(int i=0;ialpha[i]=NULL; } -- libgit2 0.21.2