| 166 | |
| 167 | |
| 168 | void timestamp_max( timestamp * const max, timestamp const * const lhs, |
| 169 | timestamp const * const rhs ) |
| 170 | { |
| 171 | if ( timestamp_cmp( lhs, rhs ) > 0 ) |
| 172 | timestamp_copy( max, lhs ); |
| 173 | else |
| 174 | timestamp_copy( max, rhs ); |
| 175 | } |
| 176 | |
| 177 | |
| 178 | static char const * timestamp_formatstr( timestamp const * const time, |
no test coverage detected