TimeLaterThanOrEqual

Returns whether a time value comes before or at the same time as another.

Synopsis

bool TimeLaterThanOrEqual(const TimeVal *tv1,const TimeVal *tv2);

Description

Returns whether tv1 comes chronologically after tv2, or is the same as tv2.

Arguments

tv1
The first time value.
tv2
The second time value.

Return Value

TRUE
if tv1 comes after tv2 or is the same as tv2
FALSE
if tv1 comes before tv2

Implementation

Macro implemented in time.h V24.

Associated Files

time.h

See Also

CompareTimes(), TimeLaterThan()