diff options
author | The Lua team <lua@tecgraf.puc-rio.br> | 1993-07-28 10:18:00 -0300 |
---|---|---|
committer | The Lua team <lua@tecgraf.puc-rio.br> | 1993-07-28 10:18:00 -0300 |
commit | cd05d9c5cb69020c069f037ba7f243f705d0a48a (patch) | |
tree | cb7f08c0684c10970a528984741047fb3babadd3 /inout.h | |
download | lua-cd05d9c5cb69020c069f037ba7f243f705d0a48a.tar.gz lua-cd05d9c5cb69020c069f037ba7f243f705d0a48a.tar.bz2 lua-cd05d9c5cb69020c069f037ba7f243f705d0a48a.zip |
oldest known commit
Diffstat (limited to 'inout.h')
-rw-r--r-- | inout.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/inout.h b/inout.h new file mode 100644 index 00000000..5a72261c --- /dev/null +++ b/inout.h | |||
@@ -0,0 +1,24 @@ | |||
1 | /* | ||
2 | ** inout.h | ||
3 | ** | ||
4 | ** Waldemar Celes Filho | ||
5 | ** TeCGraf - PUC-Rio | ||
6 | ** 11 May 93 | ||
7 | */ | ||
8 | |||
9 | |||
10 | #ifndef inout_h | ||
11 | #define inout_h | ||
12 | |||
13 | extern int lua_linenumber; | ||
14 | extern int lua_debug; | ||
15 | extern int lua_debugline; | ||
16 | |||
17 | int lua_openfile (char *fn); | ||
18 | void lua_closefile (void); | ||
19 | int lua_openstring (char *s); | ||
20 | int lua_pushfunction (int file, int function); | ||
21 | void lua_popfunction (void); | ||
22 | void lua_reportbug (char *s); | ||
23 | |||
24 | #endif | ||