lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> I am re-reading the Lua reference manual. I see that Lua is written in a
> subset of ANSI C and C++ known as clean C. I would like to improve my C code
> and what better way then to follow in the Lua developers footsteps but I
> can't find a references to this online. Could someone point the way?

I usually just separately compile my plain C code as C89, C99 and C++
98 with as much warnings enabled as is practical, fix all warnings and
run tests for each target.

HTH,
Alexander.