loader.h
来自「linux下从网卡远程启动」· C头文件 代码 · 共 15 行
H
15 行
/* Do not change these values unless you really know what you are doing; the pre-computed lookup tables rely on the buffer size being 4kB or smaller. The buffer size must be a power of two. The lookahead size has to fit into 6 bits. If you change any of these numbers, you will also have to adjust the decompressor accordingly. */#define BUFSZ 4096#define LOOKAHEAD 60#define THRESHOLD 2#define NCHAR (256+LOOKAHEAD-THRESHOLD)#define TABLESZ (NCHAR+NCHAR-1)#define NIL ((unsigned short)-1)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?