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

Function timestamp_cmp

src/engine/timestamp.cpp:98–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96
97
98int timestamp_cmp( timestamp const * const lhs, timestamp const * const rhs )
99{
100 return int(
101 lhs->secs == rhs->secs
102 ? lhs->nsecs - rhs->nsecs
103 : lhs->secs - rhs->secs );
104}
105
106
107void timestamp_copy( timestamp * const target, timestamp const * const source )

Callers 5

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

Calls

no outgoing calls

Tested by

no test coverage detected