| 161 | } |
| 162 | |
| 163 | AP_DECLARE(apr_status_t) ap_recent_ctime(char *date_str, apr_time_t t) |
| 164 | { |
| 165 | int len = APR_CTIME_LEN; |
| 166 | return ap_recent_ctime_ex(date_str, t, AP_CTIME_OPTION_NONE, &len); |
| 167 | } |
| 168 | |
| 169 | AP_DECLARE(apr_status_t) ap_recent_ctime_ex(char *date_str, apr_time_t t, |
| 170 | int option, int *len) |
no test coverage detected