This is used for determing keys that have ascii codes for the foreign keyboards. IsAlpha doesn't work on foreign keys.
| 172 | |
| 173 | // This is used for determing keys that have ascii codes for the foreign keyboards. IsAlpha doesn't work on foreign keys. |
| 174 | static inline bool dIsDecentChar(U8 c) |
| 175 | { |
| 176 | return ((U8(0xa0) <= c) || (( U8(0x21) <= c) && (c <= U8(0x7e))) || ((U8(0x91) <= c) && (c <= U8(0x92)))); |
| 177 | } |
| 178 | |
| 179 | struct AsciiMapping |
| 180 | { |
no outgoing calls
no test coverage detected