taglinefilesource code
ucs377drivers/char/consolemap.cconv_uni_to_pc(long ucs) {
ucs381drivers/char/consolemap.cif (ucs > 0xffff)
ucs382drivers/char/consolemap.cucs = 0xfffd;    /* U+FFFD: REPLACEMENT CHARACTER */
ucs383drivers/char/consolemap.celse if (ucs < 0x20 || ucs >= 0xfffe)
ucs385drivers/char/consolemap.celse if (ucs == 0xfeff || (ucs >= 0x200a && ucs <= 0x200f))
ucs392drivers/char/consolemap.celse if ( (ucs & ~UNI_DIRECT_MASK) == UNI_DIRECT_BASE )
ucs393drivers/char/consolemap.creturn ucs & UNI_DIRECT_MASK;
ucs398drivers/char/consolemap.ch = ucs % hashsize;
ucs400drivers/char/consolemap.cif (hashtable[h].unicode == ucs)
ucs14drivers/char/consolemap.hextern int conv_uni_to_pc(long ucs);