Function setFmt [src]
Asserts that the length is less than or equal to 255 bytes.
Prototype
pub fn setFmt(dl: *DynamicLinker, comptime fmt_str: []const u8, args: anytype) !void
Parameters
dl: *DynamicLinker
fmt_str: []const u8
Source
pub fn setFmt(dl: *DynamicLinker, comptime fmt_str: []const u8, args: anytype) !void {
dl.len = @intCast((try std.fmt.bufPrint(&dl.buffer, fmt_str, args)).len);
}