| 136 | inline bool IsLong (BaseType t) { return t == BASE_TYPE_LONG || |
| 137 | t == BASE_TYPE_ULONG; } |
| 138 | inline bool IsBool (BaseType t) { return t == BASE_TYPE_BOOL; } |
| 139 | inline bool IsOneByte(BaseType t) { return t >= BASE_TYPE_UTYPE && |
| 140 | t <= BASE_TYPE_UCHAR; } |
| 141 |