📄 blocks.h
字号:
/* * functions provided by the blocks.c file */#define DATA_LEN 1024struct data_block { unsigned char data[DATA_LEN]; int len; int offset; struct data_block *next;};struct block_list { struct data_block *first; struct data_block *last; int fd; long stored;};extern long block_size(struct block_list*);extern void block_init(struct block_list*, int);extern void add_char(struct block_list*, unsigned char);extern int flush_block(struct block_list*);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -