mirror of
https://github.com/nmap/nmap.git
synced 2025-12-06 12:41:29 +00:00
Moved the includes for Lua headers to the .cc files so they are not needlessly, repeatedly included. Similarly, moved some standard headers to the .cc files and reorganized includes to be uniform for all nse_* source files. Fixed whitespace (removed tabs).
10 lines
167 B
C
10 lines
167 B
C
#ifndef NSE_DEBUG
|
|
#define NSE_DEBUG
|
|
|
|
void value_dump(lua_State *L, int i, int depth_limit);
|
|
void stack_dump(lua_State *L);
|
|
void lua_state_dump(lua_State *L);
|
|
|
|
#endif
|
|
|