summaryrefslogtreecommitdiffstats
path: root/include/libfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libfile.h')
-rw-r--r--include/libfile.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/libfile.h b/include/libfile.h
index d5b914a47a..de4f42dbd1 100644
--- a/include/libfile.h
+++ b/include/libfile.h
@@ -19,4 +19,11 @@ int copy_recursive(const char *src, const char *dst);
int compare_file(const char *f1, const char *f2);
+int open_and_lseek(const char *filename, int mode, loff_t pos);
+
+/* Create a directory and its parents */
+int make_directory(const char *pathname);
+
+int unlink_recursive(const char *path, char **failedpath);
+
#endif /* __LIBFILE_H */