(c byte)
| 133 | } |
| 134 | |
| 135 | func isNum(c byte) bool { |
| 136 | return c >= '0' && c <= '9' |
| 137 | } |
| 138 | |
| 139 | func isAlpha(c byte) bool { |
| 140 | return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') |
no outgoing calls
no test coverage detected
searching dependent graphs…