Initialization

This commit is contained in:
Kozar 2024-04-11 14:19:48 +02:00
parent 01ea5cc510
commit 9f09c56775

View File

@ -12,7 +12,7 @@ struct snake* add_snake(struct snake* snake,int x,int y){
struct snake* remove_snake(struct snake* snake) {
struct snake* head;
struct snake* this = head;
while (this->next != NULL){
if (this!= NULL) {
this = this->next;
free(this);
}