aboutsummaryrefslogtreecommitdiff
path: root/src/fileutils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/fileutils.h')
-rw-r--r--src/fileutils.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/fileutils.h b/src/fileutils.h
new file mode 100644
index 0000000..6c514bb
--- /dev/null
+++ b/src/fileutils.h
@@ -0,0 +1,10 @@
+#ifndef FILEUTILS_H
+#define FILEUTILS_H
+
+const char* get_home_dir();
+/* Returns 0 on success */
+int file_get_content(const char *filepath, char **data, long *size);
+/* Returns 0 on success (if the directories are created or if the directories already exists) */
+int create_directory_recursive(char *path);
+
+#endif