hacking

来自「举世闻名的joe记事本源程序」· 代码 · 共 21 行

TXT
21
字号
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 + =
减小字号Ctrl + -
显示快捷键?