From 034f54b14416dd411fbd204f8b5465b8bc462b76 Mon Sep 17 00:00:00 2001 From: ame Date: Wed, 18 Oct 2023 16:30:38 -0500 Subject: md5 and sorting improvments --- src/crypto.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/crypto.h (limited to 'src/crypto.h') diff --git a/src/crypto.h b/src/crypto.h new file mode 100644 index 0000000..a62add2 --- /dev/null +++ b/src/crypto.h @@ -0,0 +1,11 @@ +#include "lua.h" +#include "i_util.h" + +int l_md5(lua_State*); + +static const luaL_Reg crypto_function_list [] = { + {"md5",l_md5}, + + {NULL,NULL} +}; + -- cgit v1.2.3