| 24 | #include "md_time.h" |
| 25 | |
| 26 | apr_time_t md_timeperiod_length(const md_timeperiod_t *period) |
| 27 | { |
| 28 | return (period->start < period->end)? (period->end - period->start) : 0; |
| 29 | } |
| 30 | |
| 31 | int md_timeperiod_contains(const md_timeperiod_t *period, apr_time_t time) |
| 32 | { |
no outgoing calls
no test coverage detected