diff options
Diffstat (limited to 'src/crypto.h')
| -rw-r--r-- | src/crypto.h | 11 |
1 files changed, 11 insertions, 0 deletions
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} +}; + |
