mirror of
https://github.com/lua/lua
synced 2024-11-24 21:59:41 +03:00
15d48576ea
therefore they do not have a "baptism" name. Changes in debug API to acomodate that.
21 lines
453 B
C
21 lines
453 B
C
/*
|
|
** LUA - Linguagem para Usuarios de Aplicacao
|
|
** Grupo de Tecnologia em Computacao Grafica
|
|
** TeCGraf - PUC-Rio
|
|
** $Id: luadebug.h,v 1.1 1995/10/17 14:12:45 roberto Exp roberto $
|
|
*/
|
|
|
|
|
|
#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
|