aboutsummaryrefslogtreecommitdiff
path: root/inout.h
diff options
context:
space:
mode:
Diffstat (limited to 'inout.h')
-rw-r--r--inout.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/inout.h b/inout.h
index 57aa7b3e..059ac0e8 100644
--- a/inout.h
+++ b/inout.h
@@ -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
10extern int lua_linenumber; 11extern Word lua_linenumber;
11extern int lua_debug; 12extern Bool lua_debug;
12extern int lua_debugline; 13extern Word lua_debugline;
13 14
14char *lua_openfile (char *fn); 15char *lua_openfile (char *fn);
15void lua_closefile (void); 16void lua_closefile (void);
16char *lua_openstring (char *s); 17char *lua_openstring (char *s);
17void lua_closestring (void); 18void lua_closestring (void);
18void lua_pushfunction (char *file, int function); 19void lua_pushfunction (char *file, Word function);
19void lua_popfunction (void); 20void lua_popfunction (void);
20void lua_reportbug (char *s); 21void lua_reportbug (char *s);
21 22