Test if a character is a vertical character.
(c byte)
| 823 | |
| 824 | // Test if a character is a vertical character. |
| 825 | func isverticalspace(c byte) bool { |
| 826 | return c == '\n' || c == '\r' || c == '\f' || c == '\v' |
| 827 | } |
| 828 | |
| 829 | // Test if a character is letter. |
| 830 | func isletter(c byte) bool { |
no outgoing calls
no test coverage detected
searching dependent graphs…