diff options
Diffstat (limited to 'kernel/include')
-rw-r--r-- | kernel/include/comus/fs.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kernel/include/comus/fs.h b/kernel/include/comus/fs.h index 5989afc..2f678b6 100644 --- a/kernel/include/comus/fs.h +++ b/kernel/include/comus/fs.h @@ -200,9 +200,11 @@ struct file_system { /// filesystem name const char *fs_name; /// opens a file - int (*open)(struct file_system *fs, const char *fullpath, struct file **out); + int (*open)(struct file_system *fs, const char *fullpath, + struct file **out); /// stats a file - int (*stat)(struct file_system *fs, const char *fullpath, struct stat *file); + int (*stat)(struct file_system *fs, const char *fullpath, + struct stat *file); }; // list of all disks on the system |