void os_beep (int);
int os_char_width (zchar);
-int os_check_unicode (int, zword);
+int os_check_unicode (int, zchar);
void os_display_char (zchar);
void os_display_string (const zchar *);
void os_draw_picture (int, int, int);
* displayed, and bit 1 if it can be input.
*
*/
-int os_check_unicode(int font, zword c)
+int os_check_unicode(int font, zchar c)
{
/* Assume full input and output. */
return 3;
return screen_changes + r * h_screen_cols;
}
-int os_check_unicode(int font, zword c)
+int os_check_unicode(int font, zchar c)
{
/* Only UTF-8 output, no input yet. */
return 1;
*
*
*/
-int os_check_unicode(int font, zword c)
+int os_check_unicode(int font, zchar c)
{
return ((current.font->hasglyph(current.font,c,0) != 0) ? 3 : 2);
}