taglinefilesource code
ucs142drivers/char/console.cextern int conv_uni_to_pc(unsigned long ucs);
ucs9drivers/char/uni_to_437.cunsigned short ucs;        /* a Unicode code */
ucs51drivers/char/uni_to_437.cconv_uni_to_pc(unsigned long ucs)
ucs56drivers/char/uni_to_437.cif (ucs == 0xffff || ucs == 0xfffe)
ucs58drivers/char/uni_to_437.cif (ucs == 0xfeff || (ucs >= 0x200a && ucs <= 0x200f))
ucs61drivers/char/uni_to_437.ch = (ucs ^ (ucs >> 8)) % IBM_HASHSIZE;
ucs63drivers/char/uni_to_437.cif (ibm_hash[h].ucs == ucs)