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.
Zig › std/ › elf.zig › SHT
SHT
elf.SHT
pub const SHT = enum (Word )
File
Code
pub const SHT = enum (Word ) {
NULL = 0 ,
PROGBITS = 1 ,
SYMTAB = 2 ,
STRTAB = 3 ,
RELA = 4 ,
HASH = 5 ,
DYNAMIC = 6 ,
NOTE = 7 ,
NOBITS = 8 ,
REL = 9 ,
SHLIB = 10 ,
DYNSYM = 11 ,
INIT_ARRAY = 14 ,
FINI_ARRAY = 15 ,
PREINIT_ARRAY = 16 ,
GROUP = 17 ,
SYMTAB_SHNDX = 18 ,
RELR = 19 ,
_ ,
pub const NUM = @typeInfo (SHT ).@"enum" .field_names .len ;
pub const LOOS : SHT = @fromBackingInt (@intCast (0x60000000 ));
pub const HIOS : SHT = @fromBackingInt (@intCast (0x6fffffff ));
pub const LLVM_ADDRSIG : SHT = @fromBackingInt (@intCast (0x6fff4c03 ));
pub const GNU_HASH : SHT = @fromBackingInt (@intCast (0x6ffffff6 ));
pub const GNU_VERDEF : SHT = @fromBackingInt (@intCast (0x6ffffffd ));
pub const GNU_VERNEED : SHT = @fromBackingInt (@intCast (0x6ffffffe ));
pub const GNU_VERSYM : SHT = @fromBackingInt (@intCast (0x6fffffff ));
pub const LOPROC : SHT = @fromBackingInt (@intCast (0x70000000 ));
pub const HIPROC : SHT = @fromBackingInt (@intCast (0x7fffffff ));
pub const X86_64_UNWIND : SHT = @fromBackingInt (@intCast (0x70000001 ));
pub const LOUSER : SHT = @fromBackingInt (@intCast (0x80000000 ));
pub const HIUSER : SHT = @fromBackingInt (@intCast (0xffffffff ));
}