aboutsummaryrefslogtreecommitdiff
path: root/include/files.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/files.h')
-rw-r--r--include/files.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/files.h b/include/files.h
index 24712e9..052c5f4 100644
--- a/include/files.h
+++ b/include/files.h
@@ -23,7 +23,12 @@
#include <stdbool.h>
+#include "str.h"
+
bool file_exists(const char *path);
bool is_directory(const char *path);
+bool rmrf(str *path);
+bool file_write(str *content, str *path);
+str file_read(str *path);
#endif