1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 20:51:30 +00:00
Files
nmap/nse_debug.h
batrick 085eecbac7 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.
2008-11-18 23:24:17 +00:00

14 lines
154 B
C

#ifndef NSE_DEBUG
#define NSE_DEBUG
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
void stack_dump(lua_State *L);
#endif