Started concrete implementation of extraction

This commit is contained in:
Caleb Gardner
2026-05-13 01:12:02 -05:00
parent 2b0625e178
commit 78d1ee2937
4 changed files with 207 additions and 39 deletions
+2 -2
View File
@@ -40,8 +40,8 @@ pub fn init(alloc: std.mem.Allocator, io: Io, fil: OffsetFile, decomp: *const De
.value_cache = .init(alloc),
};
}
pub fn deinit(self: *XattrCachedTable) void {
self.table.deinit();
pub fn deinit(self: *XattrCachedTable, io: Io) void {
self.table.deinit(io);
self.value_cache.deinit();
}