CharEq
#define CharEq(a,b) (((a).attr == (b).attr) \
#define CharEq(a,b) (!memcmp(&(a), &(b), sizeof(a)))
#define CharEq(a,b) ((a) == (b))