new module 'lbitlib.c' for bitwise operations

This commit is contained in:
Roberto Ierusalimschy
2009-07-01 13:16:40 -03:00
parent eb8499c8e0
commit 3abe3da9fb
4 changed files with 38 additions and 23 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lualib.h,v 1.36 2005/12/27 17:12:00 roberto Exp roberto $
** $Id: lualib.h,v 1.37 2006/09/11 14:07:24 roberto Exp roberto $
** Lua standard libraries
** See Copyright Notice in lua.h
*/
@@ -30,6 +30,9 @@ LUALIB_API int (luaopen_os) (lua_State *L);
#define LUA_STRLIBNAME "string"
LUALIB_API int (luaopen_string) (lua_State *L);
#define LUA_BITLIBNAME "bit"
LUALIB_API int (luaopen_bit) (lua_State *L);
#define LUA_MATHLIBNAME "math"
LUALIB_API int (luaopen_math) (lua_State *L);