MCPcopy Create free account
hub / github.com/boostorg/build / timestamp_cmp

Function timestamp_cmp

v2/engine/timestamp.c:110–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108
109
110int timestamp_cmp( timestamp const * const lhs, timestamp const * const rhs )
111{
112 return lhs->secs == rhs->secs
113 ? lhs->nsecs - rhs->nsecs
114 : lhs->secs - rhs->secs;
115}
116
117
118void timestamp_copy( timestamp * const target, timestamp const * const source )

Callers 5

hcacheFunction · 0.85
timestamp_maxFunction · 0.85
make0Function · 0.85
dependGraphOutputFunction · 0.85
make0sortFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected