[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: C style standards for Lua modules?
- From: "Mark Edgar" <medgar123@...>
- Date: Wed, 9 May 2007 16:42:01 -0700
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