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