lib: fs: implement fs.seek()

This commit is contained in:
2026-03-21 10:48:33 +00:00
parent a37a07d708
commit af424d85d8
3 changed files with 61 additions and 0 deletions

View File

@@ -90,6 +90,7 @@ struct fs_context *fs_context_create(struct fs_allocator *alloc)
ctx->ctx_vtable.close = fs_msg_close;
ctx->ctx_vtable.read = fs_msg_read;
ctx->ctx_vtable.write = fs_msg_write;
ctx->ctx_vtable.seek = fs_msg_seek;
ctx->ctx_vtable.map = fs_msg_map;
return ctx;