sbool isLatinChar(char c) { ret c >= 'a' && c <= 'z' || c >= 'A' && c <= 'Z'; }