* Returns whether a given unicode character is an alphabetic character. */
| 66 | * Returns whether a given unicode character is an alphabetic character. |
| 67 | */ |
| 68 | bool isAlpha (int ch) |
| 69 | { |
| 70 | return ch < 0x500 && (alpha[ch / 8] & (1 << (ch & 7))); |
| 71 | } |
| 72 | |
| 73 | int decodeUtf8 (const char *s) |
| 74 | { |
no outgoing calls
no test coverage detected