alphachar
#define alphachar(c) (((c) >= 'a' && (c) <= 'z') || ((c) >= 'A' && (c) <= 'Z'))
#define alphachar(c) (((c) >= 0x41 && (c) <= 0x5a) \