📄 blokstak.h
字号:
struct BLOCK_REC
{
int start;
int end;
struct BLOCK_REC *next;
};
void block_push(struct BLOCK_REC **the_stack, int start, int end);
void block_pop(struct BLOCK_REC **the_stack);
int get_top_start(struct BLOCK_REC *the_stack);
int get_top_end(struct BLOCK_REC *the_stack);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -