Test if a character is a horizontal whitespace character.
(c byte)
| 818 | |
| 819 | // Test if a character is a horizontal whitespace character. |
| 820 | func ishorizontalspace(c byte) bool { |
| 821 | return c == ' ' || c == '\t' |
| 822 | } |
| 823 | |
| 824 | // Test if a character is a vertical character. |
| 825 | func isverticalspace(c byte) bool { |
no outgoing calls
no test coverage detected
searching dependent graphs…