first (big) step to support wide chars

This commit is contained in:
Roberto Ierusalimschy
2001-02-23 14:17:25 -03:00
parent d164e2294f
commit 39b7978329
40 changed files with 1151 additions and 1121 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: lualib.h,v 1.15 2000/11/23 13:49:35 roberto Exp roberto $
** $Id: lualib.h,v 1.16 2001/02/22 17:15:18 roberto Exp roberto $
** Lua standard libraries
** See Copyright Notice in lua.h
*/
@@ -36,4 +36,14 @@ LUALIB_API void lua_dblibopen (lua_State *L);
/* integer type to hold the result of fgetc */
typedef int l_charint;
/* macro to control type of literal strings */
#ifndef l_s
#define l_s(x) x
#endif
/* macro to control type of literal chars */
#ifndef l_c
#define l_c(x) x
#endif
#endif