发布时间:2013-01-29 08:38:48
Source code for Lua 5.1This is the complete source code of Lua 5.1, with links to header files, functions, macros, types, and variables. You can browse the modules below or find a name in the index. Includeslua.hlauxlib.hlualib.hluaconf.h.........【阅读全文】
发布时间:2013-01-28 15:54:13
代码参考 第28章C代码://-------- Array Begin --------------------------------------------------------------------//C语言不允许大小为0的数组,这个1只是一个占位符, newarray 中重新给数组分配空间typedef struct NumArray {size_t size;double values[1];} NumArray;static Num.........【阅读全文】