⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 link_snake.h

📁 linux下 贪食蛇代码的书写 利用到linux的图形库 时钟中断 等系统调用功能
💻 H
字号:


#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -