Function formatAsciiChar [src]
Prototype
pub fn formatAsciiChar( c: u8, options: FormatOptions, writer: anytype, ) !void
Parameters
c: u8
options: FormatOptions
Source
pub fn formatAsciiChar(
c: u8,
options: FormatOptions,
writer: anytype,
) !void {
return formatBuf(@as(*const [1]u8, &c), options, writer);
}