zly return
This commit is contained in:
parent
6355055a5c
commit
a66b22631d
@ -61,5 +61,12 @@ struct car* clear_train(struct car* first, const char* target) {
|
||||
this = this->next;
|
||||
}
|
||||
}
|
||||
return first;
|
||||
if(strcmp(this->value, target) ==0){
|
||||
free(this);
|
||||
this->next = NULL;
|
||||
return this;
|
||||
}
|
||||
else{
|
||||
return first;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user