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

Function getCharTranscript

crengine/src/lvstring.cpp:2359–2370  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2357"s", "t", "u", "f", "h", "ts", "ch", "sh", "sh", "\'", "y", "\'", "e", "yu", "ya"
2358};
2359static const char * getCharTranscript( lChar16 ch )
2360{
2361 if ( ch>=0x410 && ch<0x430 )
2362 return russian_capital[ch-0x410];
2363 else if (ch>=0x430 && ch<0x450)
2364 return russian_small[ch-0x430];
2365 else if (ch==0x450)
2366 return "E";
2367 else if ( ch==0x451 )
2368 return "e";
2369 return "?";
2370}
2371
2372
2373lString8 UnicodeToTranslit( const lString16 & str )

Callers 1

UnicodeToTranslitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected