submit3
This commit is contained in:
parent
fddead63be
commit
f7ca4276c3
@ -15,16 +15,20 @@ struct snake* remove_snake(struct snake* snake){
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
struct snake* curent_element = snake;
|
struct snake* curent_element = snake;
|
||||||
|
struct snake* previous_element;
|
||||||
while(curent_element->next != NULL){
|
while(curent_element->next != NULL){
|
||||||
|
previous_element=curent_element;
|
||||||
curent_element = curent_element->next;
|
curent_element = curent_element->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
free(curent_element);
|
free(curent_element);
|
||||||
|
|
||||||
if(curent_element==snake){
|
if(curent_element==snake){
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
previous_element->next=NULL;
|
||||||
|
|
||||||
return snake;
|
return snake;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user