Skip to documentation
SLOP

tiny.tldr.formats.elf.layout.symbol

Reference tiny.tldr formats elf layout symbol

Defined in formats.elf.layout.

API (3)

Actions

Public operations.

Types and contracts

Public types and contracts.

No direct callersNo direct callsformats.elf.layoutsymbol
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/tldr/src/formats/elf/layout/root.zig:9

zig
pub const symbol = @import("symbol.zig");

Source: lib/tldr/src/formats/elf/layout/symbol.zig

zig
pub const SymbolRef = struct {    object_index: usize,    symbol_index: usize,    pub fn eql(self: SymbolRef, other: SymbolRef) bool {        return self.object_index == other.object_index and self.symbol_index == other.symbol_index;    }};pub const GlobalSymbol = struct {    ref: SymbolRef,    ref_index: u32 = 0,    weak: bool,    common: bool,};

Audit

Definitions4
Public names7
Members6
Version26.7.0
Revisiondaab053ee433