wireshark/epan/wslua/lua_bitop.h
Moshe Kaplan a523135202 epan: Add header files to Doxygen
Add @file markers for epan
headers so that Doxygen will
generate documentation for them.
2021-11-30 08:46:49 +00:00

17 lines
308 B
C

/** @file
** Lua BitOp -- a bit operations library for Lua 5.1/5.2.
** http://bitop.luajit.org/
**
** Copyright (C) 2008-2012 Mike Pall. All rights reserved.
**
** SPDX-License-Identifier: MIT
**
*/
#ifndef _LUA_BITOP_H
#define _LUA_BITOP_H
extern int luaopen_bit(lua_State *L);
#endif /* _LUA_BITOP_H */