lua

A copy of the Lua development repository
Log | Files | Refs | README

commit d24253d92f1579032c7a6a30e50bba75ca56d4fe
parent 2cffb08a5c770678999a313a83c76652a3d02d4c
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue, 17 Oct 1995 12:12:26 -0200

module to declare API for debuging.

Diffstat:
Aluadebug.h | 19+++++++++++++++++++
1 file changed, 19 insertions(+), 0 deletions(-)

diff --git a/luadebug.h b/luadebug.h @@ -0,0 +1,19 @@ +/* +** LUA - Linguagem para Usuarios de Aplicacao +** Grupo de Tecnologia em Computacao Grafica +** TeCGraf - PUC-Rio +** $Id: $ +*/ + + +#ifndef luadebug_h +#define luadebug_h + +#include "lua.h" + +lua_Object lua_stackedfunction(int level); +void lua_funcinfo (lua_Object func, char **filename, char **funcname, + char **objname, int *linedefined); + + +#endif