Started work on xattr decoding

Added more utility to Inode's
This commit is contained in:
Caleb Gardner
2026-05-10 12:31:40 -05:00
parent d76b164e45
commit 93a55aa5c7
2 changed files with 47 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
const std = @import("std");
const LookupTable = @import("lookup_table.zig");
const Decompressor = @import("util/decompressor.zig");
const OffsetFile = @import("util/offset_file.zig");
const XattrTable = @This();
// Types
pub const Xattr = struct {
key: [:0]const u8,
value: []const u8,
};
// Stateless
pub fn statelessLookup() ![]Xattr {}