| 138 | } |
| 139 | |
| 140 | const char* ULScriptCode(ULScript ulscript) { |
| 141 | int i_ulscript = ulscript; |
| 142 | if (i_ulscript < 0) {i_ulscript = UNKNOWN_ULSCRIPT;} |
| 143 | if (i_ulscript >= NUM_ULSCRIPTS) {i_ulscript = UNKNOWN_ULSCRIPT;} |
| 144 | return kULScriptToCode[i_ulscript]; |
| 145 | } |
| 146 | |
| 147 | const char* ULScriptDeclaredName(ULScript ulscript) { |
| 148 | int i_ulscript = ulscript; |
no outgoing calls
no test coverage detected