pub fn is_permitted_printable_char(c: char) -> bool
Expand description

Determine if a character is an allowed eye-visible (printable) character.

The only allowed printable characters are the printable ascii characters (SPACE through ~) and tabs. All other characters are invalid and we return false.