Commit 72a3086ea5ffcaa1a0cf347f3e864efaec840b9a
1 parent
792fb926
Algorithme modifié
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
correcteur.c
... | ... | @@ -165,7 +165,7 @@ int comparaison(Node ** pn, char * mot,int cpt,int * erreur) |
165 | 165 | |
166 | 166 | return (*erreur); |
167 | 167 | } |
168 | - if (lettre == '?' || lettre == '!' || lettre == ':' || lettre == ';') return 0; | |
168 | + if (lettre == '?' || lettre == '!' || lettre == ':' || lettre == ';') return (*erreur); | |
169 | 169 | if ((*pn)->lettres[pos] == NULL) { |
170 | 170 | (*erreur)++; |
171 | 171 | return (*erreur); |
... | ... | @@ -180,7 +180,7 @@ void test_erreur(Node * Dico){ |
180 | 180 | int * erreur=malloc(sizeof(int)); |
181 | 181 | (*erreur)=0; |
182 | 182 | char mot[MAX_LETTRES]; |
183 | - texte = fopen("test.txt","r"); | |
183 | + texte = fopen("words2.txt","r"); | |
184 | 184 | int i; |
185 | 185 | while ((i = fscanf(texte,"%s",mot)) == 1){ |
186 | 186 | (*erreur)=comparaison(&Dico,mot,0,erreur); | ... | ... |