aboutsummaryrefslogtreecommitdiff
path: root/inout.h
diff options
context:
space:
mode:
authorThe Lua team <lua@tecgraf.puc-rio.br>1993-07-28 10:18:00 -0300
committerThe Lua team <lua@tecgraf.puc-rio.br>1993-07-28 10:18:00 -0300
commitcd05d9c5cb69020c069f037ba7f243f705d0a48a (patch)
treecb7f08c0684c10970a528984741047fb3babadd3 /inout.h
downloadlua-cd05d9c5cb69020c069f037ba7f243f705d0a48a.tar.gz
lua-cd05d9c5cb69020c069f037ba7f243f705d0a48a.tar.bz2
lua-cd05d9c5cb69020c069f037ba7f243f705d0a48a.zip
oldest known commit
Diffstat (limited to 'inout.h')
-rw-r--r--inout.h24
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
13extern int lua_linenumber;
14extern int lua_debug;
15extern int lua_debugline;
16
17int lua_openfile (char *fn);
18void lua_closefile (void);
19int lua_openstring (char *s);
20int lua_pushfunction (int file, int function);
21void lua_popfunction (void);
22void lua_reportbug (char *s);
23
24#endif