diff options
author | Marvin Borner | 2020-05-06 18:16:47 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-06 18:16:47 +0200 |
commit | 1a8563a05608b5b5e27eada44cf4790926001c68 (patch) | |
tree | 3e25e3168dd260bb66d22ac1b559bcefd4c405ed /src/kernel/fs/fs.h | |
parent | 476af3bcc2f2a072d32db0523c382af99a9d2b5b (diff) |
Removed vfs - ext2 ftw!
I should really start thinking before I implement features. Now I did
and I have quite a good plan for the future of Melvix (hint: not
unix/posix-compliant!).
Diffstat (limited to 'src/kernel/fs/fs.h')
-rw-r--r-- | src/kernel/fs/fs.h | 11 |
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 |