Function init [src]
Asserts that the length is less than or equal to 255 bytes.
Prototype
pub fn init(maybe_path: ?[]const u8) DynamicLinker
Parameters
maybe_path: ?[]const u8
Source
pub fn init(maybe_path: ?[]const u8) DynamicLinker {
var dl: DynamicLinker = undefined;
dl.set(maybe_path);
return dl;
}