diff options
author | Freya Murphy <freya@freyacat.org> | 2025-05-06 12:33:57 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-05-06 12:33:57 -0400 |
commit | f485b63e72cc5bf29f134c3e033a21d4a52244d3 (patch) | |
tree | 5c2bf325ec02149d9171f3a03b6c000f3eaf615f /kernel/include/comus/fs.h | |
parent | pc spkr (diff) | |
download | comus-f485b63e72cc5bf29f134c3e033a21d4a52244d3.tar.gz comus-f485b63e72cc5bf29f134c3e033a21d4a52244d3.tar.bz2 comus-f485b63e72cc5bf29f134c3e033a21d4a52244d3.zip |
update fs
Diffstat (limited to '')
-rw-r--r-- | kernel/include/comus/fs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/include/comus/fs.h b/kernel/include/comus/fs.h index 044330b..b1d0e80 100644 --- a/kernel/include/comus/fs.h +++ b/kernel/include/comus/fs.h @@ -28,7 +28,7 @@ struct disk { /// internal disk device union { struct { - char *start; + uint8_t *start; size_t len; } rd; ide_device_t ide; @@ -137,9 +137,9 @@ struct file { /// file type enum file_type f_type; /// read from the file - int (*read)(struct file *file, char *buffer, size_t nbytes); + int (*read)(struct file *file, void *buffer, size_t nbytes); /// write into the file - int (*write)(struct file *file, const char *buffer, size_t nbytes); + int (*write)(struct file *file, const void *buffer, size_t nbytes); /// seeks the file int (*seek)(struct file *file, long int offset, int whence); /// get directory entry at index |