Function fmt [src]
Prototype
pub fn fmt(b: *Build, comptime format: []const u8, args: anytype) []u8
Parameters
b: *Build
format: []const u8
Source
pub fn fmt(b: *Build, comptime format: []const u8, args: anytype) []u8 {
return std.fmt.allocPrint(b.allocator, format, args) catch @panic("OOM");
}