summaryrefslogtreecommitdiff
path: root/inout.h
diff options
context:
space:
mode:
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