| 102 | /////////////////////////////////////////// |
| 103 | |
| 104 | int32_t utf16_encode_units(char32_t ch) { |
| 105 | if (ch < 0x00010000L) return 1; |
| 106 | if (ch < 0x00110000L) return 2; |
| 107 | return 0; |
| 108 | } |
| 109 | |
| 110 | /////////////////////////////////////////// |
| 111 |
no outgoing calls
no test coverage detected