From 7832bc32b4933696e7a34b180bbba46b0c98b858 Mon Sep 17 00:00:00 2001 From: ame Date: Mon, 4 Dec 2023 01:04:57 -0600 Subject: crypto stuff and (some) file io --- src/io.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/io.h (limited to 'src/io.h') diff --git a/src/io.h b/src/io.h new file mode 100644 index 0000000..ccfe5cc --- /dev/null +++ b/src/io.h @@ -0,0 +1,8 @@ +#include "lua.h" + +int l_readfile(lua_State*); + +static const luaL_Reg io_function_list [] = { + {"readfile",l_readfile}, + {NULL,NULL} +}; -- cgit v1.2.3