use lua_mem(L, +-size) to track your additional userdata sizes. keep it balanced...
[blua.git] / src / lualib.h
blobca8748bc52273a031c492ec5085a28acde474892
1 /*
2 ** $Id: lualib.h,v 1.36.1.1 2007/12/27 13:02:25 roberto Exp $
3 ** Lua standard libraries
4 ** See Copyright Notice in lua.h
5 */
8 #ifndef lualib_h
9 #define lualib_h
11 #include "lua.h"
14 /* Key to file-handle type */
15 #define LUA_FILEHANDLE "FILE*"
17 #define LUA_POSIXNAME "posix"
18 LUALIB_API int (luaopen_posix) (lua_State *L);
20 #define LUA_COLIBNAME "coroutine"
21 LUALIB_API int (luaopen_base) (lua_State *L);
23 #define LUA_TABLIBNAME "table"
24 LUALIB_API int (luaopen_table) (lua_State *L);
26 #define LUA_IOLIBNAME "io"
27 LUALIB_API int (luaopen_io) (lua_State *L);
29 #define LUA_OSLIBNAME "os"
30 LUALIB_API int (luaopen_os) (lua_State *L);
32 #define LUA_STRLIBNAME "string"
33 LUALIB_API int (luaopen_string) (lua_State *L);
35 #define LUA_MATHLIBNAME "math"
36 LUALIB_API int (luaopen_math) (lua_State *L);
38 #define LUA_DBLIBNAME "debug"
39 LUALIB_API int (luaopen_debug) (lua_State *L);
41 #define LUA_LOADLIBNAME "package"
42 LUALIB_API int (luaopen_package) (lua_State *L);
45 /* open all previous libraries */
46 LUALIB_API void (luaL_openlibs) (lua_State *L);
50 #ifndef lua_assert
51 #define lua_assert(x) ((void)0)
52 #endif
55 #endif