Оновити 'cv9/snake.c'

This commit is contained in:
Kapliuk 2024-04-18 16:52:45 +00:00
parent 195a252054
commit 62a409e3c3

View File

@ -9,7 +9,6 @@ struct snake* add_snake(struct snake* snake,int x,int y){
head->x = x;
head->y = y;
head->next = snake;
return snake;
}
struct snake* remove_snake(struct snake* snake){