clear
This commit is contained in:
parent
ce3648c65b
commit
727845e0c9
@ -78,9 +78,9 @@ struct car* clear_train(struct car* first, const char* target) {
|
||||
while(this != NULL){
|
||||
int x = strcmp(this->value, target);
|
||||
if(x == 0){
|
||||
struct car *third = this->next->next;
|
||||
free(this->next);
|
||||
this->next = third;
|
||||
struct car *third = this->next;
|
||||
this->next = third->next;
|
||||
free(third);
|
||||
return first;
|
||||
}
|
||||
this = this->next;
|
||||
|
Loading…
Reference in New Issue
Block a user