?? common.h
字號:
/*
* common.h
*
* Definitions common to inflate and deflate
*/
#include "types.h"
#define NUM_CHARS 256
#define MIN_MATCH 3
#define MAX_MATCH 258
// window size
#define WINDOW_SIZE 32768
#define WINDOW_MASK 32767
// ZIP block types
#define BLOCKTYPE_UNCOMPRESSED 0
#define BLOCKTYPE_FIXED 1
#define BLOCKTYPE_DYNAMIC 2
// it's 288 and not 286 because we of the two extra codes which can appear
// in a static block; same for 32 vs 30 for distances
#define MAX_LITERAL_TREE_ELEMENTS 288
#define MAX_DIST_TREE_ELEMENTS 32
#define END_OF_BLOCK_CODE 256
#define NUM_PRETREE_ELEMENTS 19
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -