diff options
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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" |
30 | LUAMOD_API int (luaopen_string) (lua_State *L); | 30 | LUAMOD_API int (luaopen_string) (lua_State *L); |
31 | 31 | ||
32 | #define LUA_UTF8LIBNAME "utf8" | ||
33 | LUAMOD_API int (luaopen_utf8) (lua_State *L); | ||
34 | |||
32 | #define LUA_BITLIBNAME "bit32" | 35 | #define LUA_BITLIBNAME "bit32" |
33 | LUAMOD_API int (luaopen_bit32) (lua_State *L); | 36 | LUAMOD_API int (luaopen_bit32) (lua_State *L); |
34 | 37 | ||