diff --git a/pvjc19cv9/snake.c b/pvjc19cv9/snake.c index fd23607..bc08ad9 100644 --- a/pvjc19cv9/snake.c +++ b/pvjc19cv9/snake.c @@ -1,3 +1,5 @@ +//////////////////////////////////////////////////////////////////// + #include "snake.h" #include @@ -17,7 +19,7 @@ struct snake* new=calloc(sizeof(struct snake),1); } - +//////////////////////////////////////////////////////////////////// struct snake* remove_snake(struct snake* snake){ @@ -51,8 +53,7 @@ struct snake* remove_snake(struct snake* snake){ } - - +//////////////////////////////////////////////////////////////////// void free_snake(struct snake* sn){ @@ -66,8 +67,7 @@ void free_snake(struct snake* sn){ } - - +//////////////////////////////////////////////////////////////////// int step_state(struct state* st,enum direction dir,int width,int height){ @@ -149,3 +149,5 @@ struct snake* pos=st->snake; return END_CONTINUE; } + +////////////////////////////////////////////////////////////////////