aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/fs/fs.h')
-rw-r--r--src/kernel/fs/fs.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/kernel/fs/fs.h b/src/kernel/fs/fs.h
new file mode 100644
index 0000000..88dcd95
--- /dev/null
+++ b/src/kernel/fs/fs.h
@@ -0,0 +1,11 @@
+#ifndef MELVIX_FS_H
+#define MELVIX_FS_H
+
+#include <stdint.h>
+
+uint32_t get_file_size(char *path);
+uint32_t read(char *path, uint32_t offset, uint32_t count, uint8_t *buf);
+uint32_t write(char *path, uint32_t offset, uint32_t count, uint8_t *buf);
+uint8_t *read_file(char *path); // Only for temp kernel reads
+
+#endif \ No newline at end of file