clear train 2 prvky

This commit is contained in:
Valér Jakubčo 2021-11-04 20:32:17 +01:00
parent 56ae5df2a6
commit cf360c5edf

View File

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