lua-users home
lua-l archive

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


Are there C language style standards/guidelines for writing C language
Lua modules?

There aren't any because there is no standard
repository/collection/library of Lua modules.

That said, the Lua libraries (io, math, string, table, etc) are
written in a typical, elegant style and also provide a model for how
to write Lua modules.  These are the files listed under "Libraries" at
http://www.lua.org/source/5.1/lbaselib.c

    -Mark