history.h
来自「The major functionality added in this re」· C头文件 代码 · 共 15 行
H
15 行
#define HISTORY_SIZE 100struct history{ char *lines[HISTORY_SIZE]; int pos; int realpos;};void history_add (struct history *his, char *text);void history_free (struct history *his);char *history_up (struct history *his);char *history_down (struct history *his);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?