📄 link_snake.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 + -