diff options
author | Marvin Borner | 2020-05-06 19:04:05 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-06 19:04:05 +0200 |
commit | d94ffac4a584dc7a4f6f2ec567b8caab05ce9253 (patch) | |
tree | 559cd596a0a407d4b40c1d12d3c6a0686494da16 /src/kernel/fs/fs.h | |
parent | 1a8563a05608b5b5e27eada44cf4790926001c68 (diff) |
New build parameters and shared includes
This changes many files but I've just applied some replace commands.. So
- nothing special!
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 |