summaryrefslogtreecommitdiff
path: root/stage3/fs.h
diff options
context:
space:
mode:
authorLizzy Fleckenstein <lizzy@vlhl.dev>2023-12-19 01:54:39 +0100
committerLizzy Fleckenstein <lizzy@vlhl.dev>2023-12-19 02:11:32 +0100
commit6d263c7d4e0f4b1d34694b5d3d159ccb20b3db02 (patch)
tree41578268cf68b2d9ea1737687a0f98af979948d8 /stage3/fs.h
parent5881b4d5c1040c762599f90e091e4cc4c3abe6b1 (diff)
downloadcuddles-6d263c7d4e0f4b1d34694b5d3d159ccb20b3db02.tar.xz
keyboard driver and threads
* PS/2 keyboard driver * interactive shell * move away from \0 terminated strings to sized slices * coroutine threads and IRQ queues
Diffstat (limited to 'stage3/fs.h')
-rw-r--r--stage3/fs.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/stage3/fs.h b/stage3/fs.h
index b585577..c1fea24 100644
--- a/stage3/fs.h
+++ b/stage3/fs.h
@@ -3,11 +3,6 @@
#include "def.h"
-typedef struct {
- usize len;
- void *data;
-} file;
-
-file fs_read(const char *filename);
+str fs_read(str filename);
#endif