macro_rules! write_byte {
($w:ident, $c:expr, $f:expr) => { ... };
}Expand description
Write a byte.
This uses $f to write bytes not corresponding to normal ASCII characters.
This is especially useful to pretty-print control characters, such as
'\n' (U+000A), but also all other control characters.