MCPcopy Create free account
hub / github.com/dillo-browser/dillo / isAlpha

Function isAlpha

lout/unicode.cc:68–71  ·  view source on GitHub ↗

* Returns whether a given unicode character is an alphabetic character. */

Source from the content-addressed store, hash-verified

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

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected