Fields
buffer: [255]u8 = undefined,
Contains the memory used to store the dynamic linker path. This field should not be used directly. See get
and set
. This field exists so that this API requires no allocator.
max_byte: ?u8 = null,
Used to construct the dynamic linker path. This field should not be used directly. See get
and set
.
Functions
fn get(self: *const DynamicLinker) ?[]const u8
The returned memory has the same lifetime as the
DynamicLinker
.fn init(dl_or_null: ?[]const u8) DynamicLinker
Asserts that the length is less than or equal to 255 bytes.
fn set(self: *DynamicLinker, dl_or_null: ?[]const u8) void
Asserts that the length is less than or equal to 255 bytes.