diff options
Diffstat (limited to 'src/kernel/fs/fs.h')
-rw-r--r-- | src/kernel/fs/fs.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/fs/fs.h b/src/kernel/fs/fs.h index 88dcd95..58b23db 100644 --- a/src/kernel/fs/fs.h +++ b/src/kernel/fs/fs.h @@ -3,9 +3,9 @@ #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 +u32 get_file_size(char *path); +u32 read(char *path, u32 offset, u32 count, u8 *buf); +u32 write(char *path, u32 offset, u32 count, u8 *buf); +u8 *read_file(char *path); // Only for temp kernel reads #endif
\ No newline at end of file |