aboutsummaryrefslogtreecommitdiff
path: root/lualib.h
diff options
context:
space:
mode:
Diffstat (limited to 'lualib.h')
-rw-r--r--lualib.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/lualib.h b/lualib.h
index 15adcdb4..ea073444 100644
--- a/lualib.h
+++ b/lualib.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lualib.h,v 1.42 2011/05/25 14:12:28 roberto Exp roberto $ 2** $Id: lualib.h,v 1.43 2011/12/08 12:11:37 roberto Exp roberto $
3** Lua standard libraries 3** Lua standard libraries
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -29,6 +29,9 @@ LUAMOD_API int (luaopen_os) (lua_State *L);
29#define LUA_STRLIBNAME "string" 29#define LUA_STRLIBNAME "string"
30LUAMOD_API int (luaopen_string) (lua_State *L); 30LUAMOD_API int (luaopen_string) (lua_State *L);
31 31
32#define LUA_UTF8LIBNAME "utf8"
33LUAMOD_API int (luaopen_utf8) (lua_State *L);
34
32#define LUA_BITLIBNAME "bit32" 35#define LUA_BITLIBNAME "bit32"
33LUAMOD_API int (luaopen_bit32) (lua_State *L); 36LUAMOD_API int (luaopen_bit32) (lua_State *L);
34 37