Map script into Latin, Cyrillic, Arabic, Other
| 550 | |
| 551 | // Map script into Latin, Cyrillic, Arabic, Other |
| 552 | int LScript4(ULScript ulscript) { |
| 553 | if (ulscript == ULScript_Latin) {return 0;} |
| 554 | if (ulscript == ULScript_Cyrillic) {return 1;} |
| 555 | if (ulscript == ULScript_Arabic) {return 2;} |
| 556 | return 3; |
| 557 | } |
| 558 | |
| 559 | } // namespace CLD2 |
| 560 |
no outgoing calls
no test coverage detected