mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 20:51:30 +00:00
function that provides a clean output of the stack with positive and negative stack indices.
14 lines
154 B
C
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
|
|
|