转为大写字母
code
static int toCode_AZ(int code) { if (isCode_az(code)) { return code - (CODE_a - CODE_A); } assert(isCode_AZ(code)); return code; }