This commit is contained in:
Maryna Kravtsova 2020-11-04 22:33:38 +01:00
parent 9ea3cb77e6
commit c6ade28c0b

View File

@ -63,7 +63,7 @@ struct car* clear_train(struct car* first, const char* target) {
}
}
struct car* this = first;
while(this->next->next != NULL){
while(this->next != NULL){
int x = strcmp(this->value, target);
if(x == 0){
struct car* curr = first;
@ -83,14 +83,14 @@ struct car* clear_train(struct car* first, const char* target) {
}
this = this->next;
}
/*
int x = strcmp(this->next->value, target);
if(x == 0){
free(this->next);
this->next = NULL;
return first;
}*/
}
return first;
}