Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

LineFragmentHeader

The following variable length array appears immediately after the header. The structure definition follows. LineBlockFragmentHeader Blocks[] Each LineBlockFragmentHeader as specified below.

pdb.LineFragmentHeader
pub const LineFragmentHeader = extern struct

File

lib/std/pdb.zig:362

Code

pub const LineFragmentHeader = extern struct {
    /// Code offset of line contribution.
    reloc_offset: u32,

    /// Code segment of line contribution.
    reloc_segment: u16,
    flags: LineFlags,

    /// Code size of this line contribution.
    code_size: u32,
}