Huh?It really depend on what that comment means.
It could also mean:
if(datahi >= 0x0F || datahi <= 0xff)
Or datahi is greater or equal to 0x0f or datahi is less than or equal to 0xff.
If we are working with unsigned integers, then this is always TRUE. If we are working with signed integers, then we REALLY need to know what size the datatype is.