1 /*
2  * This module converts keysym values into the corresponding ISO 10646-1
3  * (UCS, Unicode) values.
4  */
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 unsigned keysym2ucs(unsigned keysym);
11 unsigned ucs2keysym(unsigned ucs);
12 
13 unsigned ucs2combining(unsigned spacing);
14 
15 #ifdef __cplusplus
16 }
17 #endif
18