| 536 | } |
| 537 | |
| 538 | char Convert_CodepointToCP437(cc_codepoint cp) { |
| 539 | char c; Convert_TryCodepointToCP437(cp, &c); return c; |
| 540 | } |
| 541 | |
| 542 | static cc_codepoint ReduceEmoji(cc_codepoint cp) { |
| 543 | if (cp == 0x1F31E) return 0x263C; |
no test coverage detected