1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-31 11:59:03 +00:00

Removed some old debug code no longer used/needed. Added a new stack dump

function that provides a clean output of the stack with positive
and negative stack indices.
This commit is contained in:
batrick
2008-11-18 23:24:17 +00:00
parent 20cf487b33
commit 085eecbac7
3 changed files with 33 additions and 66 deletions

View File

@@ -7,10 +7,7 @@ extern "C" {
#include "lauxlib.h"
}
void l_dumpStack(lua_State* l);
void l_dumpValue(lua_State* l, int index);
void l_dumpTable(lua_State *l, int index);
void l_dumpFunction(lua_State* l, int index);
void stack_dump(lua_State *L);
#endif