Replace round() with floor(), I don't know if it's the right thing to do but at least...
[metze/wireshark/wip.git] / plugins / lua / lua-5.0.2 / src / lib / README
1 This is the standard Lua library.
2
3 The code of the standard library can be read as an example of how to export
4 C functions to Lua. The easiest library to read is lmathlib.c.
5
6 The library is implemented entirely on top of the official Lua API as declared
7 in lua.h, using lauxlib.c, which contains several useful functions for writing
8 libraries. We encourage developers to use lauxlib.c in their own libraries.