Initialization

This commit is contained in:
Kozar 2024-04-11 14:25:11 +02:00
parent 8e02dfdaf5
commit 4d6b5938c9

View File

@ -12,8 +12,8 @@ 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;
if (this!= NULL) {
this = snake->next;
if (head!= NULL) {
head = head->next;
free(this);
}
return snake;