fix one too small
[RRG-proxmark3.git] / client / src / pm3_binlib.h
blobbbf12e28ac3f276ce79af44d512f4df4718dead7
1 //-----------------------------------------------------------------------------
2 // Borrowed initially from https://github.com/LuaDist/lpack/blob/master/lpack.c
3 // Copyright (C) 2007 Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br>
4 // Copyright (C) Ignacio Castao <castanyo@yahoo.es>
5 // Copyright (C) Roberto Ierusalimschy <roberto@inf.puc-rio.br>
6 // Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
7 //
8 // This program is free software: you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation, either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // See LICENSE.txt for the text of the license.
19 //-----------------------------------------------------------------------------
20 // a Lua library for packing and unpacking binary data
21 //-----------------------------------------------------------------------------
22 #ifndef PM3_BINLIB
23 #define PM3_BINLIB
25 #include <lua.h>
26 int set_bin_library(lua_State *L);
28 #endif /* PM3_BINLIB */