diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-23 14:28:12 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-23 14:28:12 -0300 |
commit | 35023355f21d2c508e2614dc8383d7535dd3a80a (patch) | |
tree | 060e939e2e89f30d7b4c35467692a082e59fc684 /lualib.h | |
parent | 39b79783297bee79db9853b63d199e120a009a8f (diff) | |
download | lua-35023355f21d2c508e2614dc8383d7535dd3a80a.tar.gz lua-35023355f21d2c508e2614dc8383d7535dd3a80a.tar.bz2 lua-35023355f21d2c508e2614dc8383d7535dd3a80a.zip |
details for wchar
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.16 2001/02/22 17:15:18 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.17 2001/02/23 17:17:25 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 | */ |
@@ -31,7 +31,9 @@ LUALIB_API void lua_dblibopen (lua_State *L); | |||
31 | */ | 31 | */ |
32 | 32 | ||
33 | /* macro to `unsign' a character */ | 33 | /* macro to `unsign' a character */ |
34 | #ifndef uchar | ||
34 | #define uchar(c) ((unsigned char)(c)) | 35 | #define uchar(c) ((unsigned char)(c)) |
36 | #endif | ||
35 | 37 | ||
36 | /* integer type to hold the result of fgetc */ | 38 | /* integer type to hold the result of fgetc */ |
37 | typedef int l_charint; | 39 | typedef int l_charint; |