blob: 01a7ddb0f4014417d7e49ac2e9024251a28f85c4 [file] [log] [blame] [edit]
/*
* This module converts keysym values into the corresponding ISO 10646-1
* (UCS, Unicode) values.
*/
#ifdef __cplusplus
extern "C" {
#endif
unsigned keysym2ucs(unsigned keysym);
unsigned ucs2keysym(unsigned ucs);
unsigned ucs2combining(unsigned spacing);
#ifdef __cplusplus
}
#endif