Files
zig-squashfs/inode_types/misc.zig
T
2025-05-13 10:24:17 -05:00

22 lines
368 B
Zig

const io = @import("std").io;
pub const DeviceInode = packed struct {
hard_links: u32,
device: u32,
};
pub const ExtDeviceInode = packed struct {
hard_links: u32,
device: u32,
xattr_index: u32,
};
pub const IPCInode = packed struct {
hard_links: u32,
};
pub const ExtIPCInode = packed struct {
hard_links: u32,
xattr_index: u32,
};