MCPcopy Create free account
hub / github.com/buggins/coolreader / lvUnicodeIsAlpha

Function lvUnicodeIsAlpha

crengine/src/lvstring.cpp:1873–1882  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1871}
1872
1873bool lvUnicodeIsAlpha( lChar16 ch )
1874{
1875 if ( ch<128 ) {
1876 if ( (ch>='a' && ch<='z') || (ch>='A' && ch<='Z') )
1877 return true;
1878 } else if ( ch>=0xC0 && ch<=0x1ef9) {
1879 return true;
1880 }
1881 return false;
1882}
1883
1884
1885lString16 & lString16::uppercase()

Callers 1

lvstring.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected