clear
This commit is contained in:
parent
73475fc126
commit
8d777667f6
@ -66,10 +66,9 @@ struct car* clear_train(struct car* first, const char* target) {
|
||||
while(prev->next->next != NULL){
|
||||
int x = strcmp(first->value, target);
|
||||
if(x == 0){
|
||||
//first = NULL;
|
||||
first = first->next;
|
||||
free(first);
|
||||
return first->next;
|
||||
free(prev);
|
||||
return first;
|
||||
|
||||
}
|
||||
x = strcmp(prev->next->value, target);
|
||||
|
Loading…
Reference in New Issue
Block a user