Nice little coding trick for checking if a value lies within two other values. The result is faster and (slightly) smaller than checking both values. The trick could be extended to do bounding box intersections for collision detection for example.
Neat trick
It resolves down to this macro:
#define InRange(ch, a, b) (unsigned((ch) - (a)) <= (b) - (a))
.cool