Squeleton for single file

This commit is contained in:
Adrien Bouvais 2025-01-30 20:22:49 +01:00
parent e0d4840123
commit f02a1e3e01

View File

@ -29,3 +29,11 @@ pub fn fileVar(comptime T: type) type {
}
};
}
// I also need some kind of file arena to store data. Those arena would act like files
// In SQLite, this is call page I think. Each can either hold data of a unique struct or multiple variable.
pub const fileBlock = struct {
position: usize,
size: usize,
};