prototypes
来自「C实现的MUD,对大家基本入门网络游戏很有帮助!」· 代码 · 共 11 行
TXT
11 行
* The function prototype:
The LPC function prototype is very similar to that of ANSI C. The
function prototype allows for better type checking and can serve as
a kind of 'forward' declaration.
return_type function_name(arg1_type arg1, arg2_type arg2, ...);
Also note that the arguments need not have names:
return_type function_name(arg1_type, arg2_type, ...);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?