Function bufPrintZ [src]

Prototype

pub fn bufPrintZ(buf: []u8, comptime fmt: []const u8, args: anytype) BufPrintError![:0]u8

Parameters

buf: []u8fmt: []const u8

Possible Errors

NoSpaceLeft

As much as possible was written to the buffer, but it was too small to fit all the printed bytes.

Source

pub fn bufPrintZ(buf: []u8, comptime fmt: []const u8, args: anytype) BufPrintError![:0]u8 { const result = try bufPrint(buf, fmt ++ "\x00", args); return result[0 .. result.len - 1 :0]; }