This commit is contained in:
Maryna Kravtsova 2020-11-03 10:40:44 +01:00
parent 1556d1882c
commit a6861c0d99

View File

@ -65,8 +65,11 @@ struct car* clear_train(struct car* first, const char* target) {
if(first == NULL){
return 0;
}
int result = 0;
if(first->next == NULL){
if(first->value == target){
x = strcmp(first->value, target);
if(x == 0){
free(first);
return 0;
}
@ -74,7 +77,9 @@ struct car* clear_train(struct car* first, const char* target) {
else{
struct car* this = first;
while(this != NULL){
if(this->value == target){
int x == strcmp(this->value, target);
if(x == 0){
free(this->value);
return 0;
}
this = this->next;