enet
Macros
time.h File Reference

ENet time constants and macros. More...

Go to the source code of this file.

Macros

#define ENET_TIME_OVERFLOW   86400000
#define ENET_TIME_LESS(a, b)   ((a) - (b) >= ENET_TIME_OVERFLOW)
#define ENET_TIME_GREATER(a, b)   ((b) - (a) >= ENET_TIME_OVERFLOW)
#define ENET_TIME_LESS_EQUAL(a, b)   (! ENET_TIME_GREATER (a, b))
#define ENET_TIME_GREATER_EQUAL(a, b)   (! ENET_TIME_LESS (a, b))
#define ENET_TIME_DIFFERENCE(a, b)   ((a) - (b) >= ENET_TIME_OVERFLOW ? (b) - (a) : (a) - (b))

Detailed Description