Deprecated in favor of mem.printSentinel.
pub fn bufPrintSentinel(
buf: []u8,
comptime fmt: []const u8,
args: anytype,
comptime sentinel: u8,
) BufPrintError![:sentinel]u8
pub fn bufPrintSentinel(
buf: []u8,
comptime fmt: []const u8,
args: anytype,
comptime sentinel: u8,
) BufPrintError![:sentinel]u8 {
return mem.printSentinel(buf, fmt, args, sentinel);
}