tiny.tldr.formats.elf.layout.symbol
Defined in formats.elf.layout.
API (3)
Actions
Public operations.
Types and contracts
Public types and contracts.
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
| Definitions | 4 |
|---|---|
| Public names | 7 |
| Members | 6 |
| Version | 26.7.0 |
| Revision | daab053ee433 |