INTEL厨 vs AMD厨 Part34

このエントリーをはてなブックマークに追加
824 ◆Rb.XJ8VXow
さて、>>802の設問の解答をしておく。

unsigned short int jis2sjis(unsigned short int code)
{
return ((((code - 0x5f00) >> 1) & 0x7f00) ^ 0xe000) + (code & 0x00ff) + ((code & 0x0100)? (((code & 0x00ff) < 0x60) ? 0x001f : 0x0020) : 0x007e);
}