first (big) step to support wide chars
This commit is contained in:
12
lualib.h
12
lualib.h
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user