extern structstd.os.linux.dirent64[src]

Fields

ino: u64
off: u64
reclen: u16
type: u8
name: u8

Source Code

Source code
pub const dirent64 = extern struct {
    ino: u64,
    off: u64,
    reclen: u16,
    type: u8,
    name: u8, // field address is the address of first byte of name https://github.com/ziglang/zig/issues/173
}