From 6ccf1500396efffeb38ed54ac78d2f2d41a9b762 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 6 Feb 2014 15:32:33 -0200 Subject: new library: utf8 --- lualib.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lualib.h') diff --git a/lualib.h b/lualib.h index 15adcdb4..ea073444 100644 --- a/lualib.h +++ b/lualib.h @@ -1,5 +1,5 @@ /* -** $Id: lualib.h,v 1.42 2011/05/25 14:12:28 roberto Exp roberto $ +** $Id: lualib.h,v 1.43 2011/12/08 12:11:37 roberto Exp roberto $ ** Lua standard libraries ** See Copyright Notice in lua.h */ @@ -29,6 +29,9 @@ LUAMOD_API int (luaopen_os) (lua_State *L); #define LUA_STRLIBNAME "string" LUAMOD_API int (luaopen_string) (lua_State *L); +#define LUA_UTF8LIBNAME "utf8" +LUAMOD_API int (luaopen_utf8) (lua_State *L); + #define LUA_BITLIBNAME "bit32" LUAMOD_API int (luaopen_bit32) (lua_State *L); -- cgit v1.2.3-55-g6feb