summaryrefslogtreecommitdiff
path: root/include/luadebug.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/luadebug.h')
-rw-r--r--include/luadebug.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/luadebug.h b/include/luadebug.h
new file mode 100644
index 00000000..c1e26dcf
--- /dev/null
+++ b/include/luadebug.h
@@ -0,0 +1,20 @@
+/*
+** LUA - Linguagem para Usuarios de Aplicacao
+** Grupo de Tecnologia em Computacao Grafica
+** TeCGraf - PUC-Rio
+** $Id: luadebug.h,v 1.2 1995/10/26 14:21:56 roberto Exp $
+*/
+
+
+#ifndef luadebug_h
+#define luadebug_h
+
+#include "lua.h"
+
+lua_Object lua_stackedfunction(int level);
+void lua_funcinfo (lua_Object func, char **filename, int *linedefined);
+int lua_currentline (lua_Object func);
+char *getobjname (lua_Object o, char **name);
+
+
+#endif