| 174 | |
| 175 | |
| 176 | void timestamp_max( timestamp * const max, timestamp const * const lhs, |
| 177 | timestamp const * const rhs ) |
| 178 | { |
| 179 | if ( timestamp_cmp( lhs, rhs ) > 0 ) |
| 180 | timestamp_copy( max, lhs ); |
| 181 | else |
| 182 | timestamp_copy( max, rhs ); |
| 183 | } |
| 184 | |
| 185 | |
| 186 | static char const * timestamp_formatstr( timestamp const * const time, |
no test coverage detected