aboutsummaryrefslogtreecommitdiff
path: root/src/restore.h
diff options
context:
space:
mode:
authorJan Sucan <jan@jansucan.com>2021-05-30 12:31:50 +0200
committerJan Sucan <jan@jansucan.com>2021-05-30 12:31:50 +0200
commit24e36faed4c10817999ff37bc76f36230930e4bb (patch)
treebf36c6c399369c575bae71c6542f7e81347d9a5a /src/restore.h
parent7044b0ad1d49f60a821e7c1534d259ada8894577 (diff)
Move backup and restore code to separate source files
Diffstat (limited to 'src/restore.h')
-rw-r--r--src/restore.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/restore.h b/src/restore.h
new file mode 100644
index 0000000..cc095b9
--- /dev/null
+++ b/src/restore.h
@@ -0,0 +1,9 @@
+#ifndef RESTORE_H
+#define RESTORE_H
+
+#include "options.h"
+#include "resources.h"
+
+int restore(const options_t *const opts, resources_t *const res);
+
+#endif /* RESTORE_H */