This commit is contained in:
kr820js 2024-04-13 19:18:36 +02:00
parent fe913763f6
commit fddead63be

View File

@ -6,7 +6,7 @@ struct snake* add_snake(struct snake* snake,int x,int y){
head->x = x;
head->y = y;
head->next = snake;
return head;
}
@ -18,13 +18,13 @@ struct snake* remove_snake(struct snake* snake){
while(curent_element->next != NULL){
curent_element = curent_element->next;
}
free(curent_element);
if(curent_element==snake){
return NULL;
}
return snake;
}
@ -34,12 +34,11 @@ void free_snake(struct snake* sn){
return;
}
struct snake* next_element;
while(current->next!=NULL){
while(current!=NULL){
next_element=current->next;
free(current);
current=next_element;
}
free(current);
}
int is_snake(struct snake* snake,int x,int y){
@ -58,3 +57,4 @@ int step_state(struct state* st){
int ny = (st->snake->y + st->sy);
return END_CONTINUE;
}