📄 hacking
字号:
SQA:Some of this is a little pedantic these days. The need for accessing oldversions of UNIX is less now that Linux and BSD exist on PCs.Unsigned char: Use 'unsigned char', never 'char'. This is a big pain, but it prevents char to int when you meant unsigned char to int conversion bugs.gcc: Please run gcc -Wall. Make especially sure that there are no functions used before defined warnings. These are OK on 32-bit systems, but break on 64-bit systems where sizeof(int) doesn't equal sizeof(void *).Buffer and file offsets: Use 'long'.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -