Function fmt [src]

Prototype

pub fn fmt(b: *Build, comptime format: []const u8, args: anytype) []u8

Parameters

b: *Buildformat: []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"); }