Function set [src]
Asserts that the length is less than or equal to 255 bytes.
Prototype
pub fn set(dl: *DynamicLinker, maybe_path: ?[]const u8) void
Parameters
dl: *DynamicLinker
maybe_path: ?[]const u8
Source
pub fn set(dl: *DynamicLinker, maybe_path: ?[]const u8) void {
const path = maybe_path orelse "";
@memcpy(dl.buffer[0..path.len], path);
dl.len = @intCast(path.len);
}