forked from starnakin/IronGOLEM
2 lines
65 B
Plaintext
2 lines
65 B
Plaintext
isalpha(c) return (c >= 'a' & c <= 'z') | (c >= 'A' & c <= 'Z');
|