link_snake.h

来自「linux下 贪食蛇代码的书写 利用到linux的图形库 时钟中断 等系统调用功」· C头文件 代码 · 共 21 行

H
21
字号


#ifndef _LINKSNAKE_h
#define _LINKSNAKE_h

#define LEN_STR 12

struct body{
	int x;
	int y;
	struct body *next;
};

struct body *creat(void );
void	insert(struct body *,int ,int );
void	born_snake(struct body *);
int		seek_snake(struct body *,int ,int );
struct body *last_node(struct body *);
void	increase_snake(struct body * ,int ,int);

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?