Some initial work

Some basic Inode stuff
Some basic Archive stuff
This commit is contained in:
Caleb J. Gardner
2026-03-26 22:30:15 -05:00
parent 30755f7d5c
commit a8c067e933
8 changed files with 202 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
pub const Dir = packed struct {};
pub const ExtDir = packed struct {};
+3
View File
@@ -0,0 +1,3 @@
pub const File = struct {};
pub const ExtFile = struct {};
+7
View File
@@ -0,0 +1,7 @@
pub const Device = packed struct {};
pub const ExtDevice = packed struct {};
pub const Ipc = packed struct {};
pub const ExtIpc = packed struct {};
+3
View File
@@ -0,0 +1,3 @@
pub const Symlink = struct {};
pub const ExtSymlink = struct {};