diff options
Diffstat (limited to 'src/kernel/fs/ext2.h')
-rw-r--r-- | src/kernel/fs/ext2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/kernel/fs/ext2.h b/src/kernel/fs/ext2.h index 88515a3..8747c19 100644 --- a/src/kernel/fs/ext2.h +++ b/src/kernel/fs/ext2.h @@ -4,6 +4,7 @@ #include <stdint.h> #include <stddef.h> #include <stdbool.h> +#include <kernel/fs/vfs.h> #define ROOT_INODE 2 @@ -138,5 +139,6 @@ uint32_t ext2_find_in_dir(uint32_t dir_inode, const char *name); uint32_t ext2_look_up_path(char *path); uint8_t *read_file(char *path); +void ext2_mount(struct fs_node *mountpoint); #endif
\ No newline at end of file |