Changes in uspace/srv/hid/fb/port/kchar.c [9d58539:446ac2a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/fb/port/kchar.c
r9d58539 r446ac2a 48 48 static void kchar_putchar(wchar_t ch) 49 49 { 50 if ( (ch >= 0) && (ch < 128))50 if (ascii_check(ch)) 51 51 *kchar.addr = ch; 52 52 else
Note:
See TracChangeset
for help on using the changeset viewer.