diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/str.go | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -28,3 +28,13 @@ func stripSpaceChars(s string) string { } return ss } + +func isAlpha(c byte) bool { + switch { + case 'A' <= c && c <= 'Z': + return true + case 'a' <= c && c <= 'z': + return true + } + return false +} |