| 593 | } DecompTypeEnum; |
| 594 | |
| 595 | static uint32_t unicode_get_short_code(uint32_t c) |
| 596 | { |
| 597 | static const uint16_t unicode_short_table[2] = { 0x2044, 0x2215 }; |
| 598 | |
| 599 | if (c < 0x80) |
| 600 | return c; |
| 601 | else if (c < 0x80 + 0x50) |
| 602 | return c - 0x80 + 0x300; |
| 603 | else |
| 604 | return unicode_short_table[c - 0x80 - 0x50]; |
| 605 | } |
| 606 | |
| 607 | static uint32_t unicode_get_lower_simple(uint32_t c) |
| 608 | { |
no outgoing calls
no test coverage detected