summaryrefslogtreecommitdiff
path: root/src/bindings.h
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-01-03 20:59:16 -0600
committersanine <sanine.not@pm.me>2022-01-03 20:59:16 -0600
commit5830f684ba172664df43eee26636e99e5a228028 (patch)
tree959fe4bd5545e40ef0403432cad535088abb6796 /src/bindings.h
parent7db6401dfb0604e92946ac4f7c76d541498e6ebb (diff)
add create_directory() and copy_file()
Diffstat (limited to 'src/bindings.h')
-rw-r--r--src/bindings.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bindings.h b/src/bindings.h
index 853f0c0..847baa7 100644
--- a/src/bindings.h
+++ b/src/bindings.h
@@ -9,4 +9,8 @@ int markdown(lua_State *L);
// and the other containing filenames for all regular files
int scan_directory(lua_State *L);
+int create_directory(lua_State *L);
+
+int copy_file(lua_State *L);
+
#endif