| 69 | } |
| 70 | |
| 71 | std::string FormatCodePoint(uint32_t codePoint) { |
| 72 | char buffer[11]; |
| 73 | snprintf(buffer, sizeof(buffer), "U+%04X", codePoint); |
| 74 | return buffer; |
| 75 | } |
| 76 | |
| 77 | bool IsCjkCompatibilityIdeograph(uint32_t codePoint) { |
| 78 | return (codePoint >= 0xF900 && codePoint <= 0xFAFF) || |
no outgoing calls
no test coverage detected