diff options
Diffstat (limited to 'lualib.h')
-rw-r--r-- | lualib.h | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lualib.h,v 1.14 2000/10/27 16:15:53 roberto Exp roberto $ | 2 | ** $Id: lualib.h,v 1.15 2000/11/23 13:49:35 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 | */ |
@@ -25,4 +25,15 @@ LUALIB_API void lua_mathlibopen (lua_State *L); | |||
25 | LUALIB_API void lua_dblibopen (lua_State *L); | 25 | LUALIB_API void lua_dblibopen (lua_State *L); |
26 | 26 | ||
27 | 27 | ||
28 | |||
29 | /* | ||
30 | ** `private' part | ||
31 | */ | ||
32 | |||
33 | /* macro to `unsign' a character */ | ||
34 | #define uchar(c) ((unsigned char)(c)) | ||
35 | |||
36 | /* integer type to hold the result of fgetc */ | ||
37 | typedef int l_charint; | ||
38 | |||
28 | #endif | 39 | #endif |