📄 memos2.gml
字号:
.code begin
/* This structure is for an individual line in a memo.
*/
typedef struct text_line {
struct text_line * next;
char text[1];
} TEXT_LINE;
.code break
/* This structure is the head of an individual memo.
*/
typedef struct memo_el {
struct memo_el * prev;
struct memo_el * next;
TEXT_LINE * text;
char date[9];
} MEMO_EL;
.code end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -