mirror of
https://github.com/nmap/nmap.git
synced 2025-12-07 13:11:28 +00:00
15 lines
162 B
C
15 lines
162 B
C
#ifndef BITLIB
|
|
#define BITLIB
|
|
|
|
#define BITLIBNAME "bit"
|
|
|
|
extern "C" {
|
|
#include "lauxlib.h"
|
|
#include "lua.h"
|
|
}
|
|
|
|
LUALIB_API int luaopen_bit(lua_State *L);
|
|
|
|
#endif
|
|
|