diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-02-06 15:32:33 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2014-02-06 15:32:33 -0200 |
commit | 6ccf1500396efffeb38ed54ac78d2f2d41a9b762 (patch) | |
tree | 8985365adae96e4d3c8b9e6f4b02c1c9b94e28c1 /lualib.h | |
parent | 4ea60463f5a5cc5c30bf3f20be0dd5141f48aa3c (diff) | |
download | lua-6ccf1500396efffeb38ed54ac78d2f2d41a9b762.tar.gz lua-6ccf1500396efffeb38ed54ac78d2f2d41a9b762.tar.bz2 lua-6ccf1500396efffeb38ed54ac78d2f2d41a9b762.zip |
new library: utf8
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 | ||