Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
lua_bitop.h
1 /*
2 ** Lua BitOp -- a bit operations library for Lua 5.1/5.2.
3 ** http://bitop.luajit.org/
4 **
5 ** Copyright (C) 2008-2012 Mike Pall. All rights reserved.
6 **
7 ** SPDX-License-Identifier: MIT
8 **
9 */
10 
11 #ifndef _LUA_BITOP_H
12 #define _LUA_BITOP_H
13 
14 extern int luaopen_bit(lua_State *L);
15 
16 #endif /* _LUA_BITOP_H */