| 96 | |
| 97 | |
| 98 | int 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 | |
| 107 | void timestamp_copy( timestamp * const target, timestamp const * const source ) |
no outgoing calls
no test coverage detected