diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-12-20 19:20:36 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-12-20 19:20:36 -0200 |
commit | 8cb8594a3bcfdc1447aebfcd0ac85db9af5ca490 (patch) | |
tree | 13d09f704662cafa2597e77c92611b468e4741c9 /inout.h | |
parent | fe8338335dfb4bf37e6b164cb55bfcc94ec6563d (diff) | |
download | lua-8cb8594a3bcfdc1447aebfcd0ac85db9af5ca490.tar.gz lua-8cb8594a3bcfdc1447aebfcd0ac85db9af5ca490.tar.bz2 lua-8cb8594a3bcfdc1447aebfcd0ac85db9af5ca490.zip |
better control of integer types and their limits
Diffstat (limited to 'inout.h')
-rw-r--r-- | inout.h | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,21 +1,22 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: inout.h,v 1.5 1994/11/08 20:06:15 roberto Exp roberto $ | 2 | ** $Id: inout.h,v 1.6 1994/11/21 21:41:09 roberto Stab roberto $ |
3 | */ | 3 | */ |
4 | 4 | ||
5 | 5 | ||
6 | #ifndef inout_h | 6 | #ifndef inout_h |
7 | #define inout_h | 7 | #define inout_h |
8 | 8 | ||
9 | #include "types.h" | ||
9 | 10 | ||
10 | extern int lua_linenumber; | 11 | extern Word lua_linenumber; |
11 | extern int lua_debug; | 12 | extern Bool lua_debug; |
12 | extern int lua_debugline; | 13 | extern Word lua_debugline; |
13 | 14 | ||
14 | char *lua_openfile (char *fn); | 15 | char *lua_openfile (char *fn); |
15 | void lua_closefile (void); | 16 | void lua_closefile (void); |
16 | char *lua_openstring (char *s); | 17 | char *lua_openstring (char *s); |
17 | void lua_closestring (void); | 18 | void lua_closestring (void); |
18 | void lua_pushfunction (char *file, int function); | 19 | void lua_pushfunction (char *file, Word function); |
19 | void lua_popfunction (void); | 20 | void lua_popfunction (void); |
20 | void lua_reportbug (char *s); | 21 | void lua_reportbug (char *s); |
21 | 22 | ||