Sign in
nginx
/
nginx
/
659774979feb9741a441505e26774b35830fd4ca
/
.
/
src
/
http
/
ngx_http_get_time.c
blob: 971914e4da1d9be8bbfcae4a3bba48f6a408de13 [
file
] [
log
] [
blame
]
#include
<ngx_config.h>
#include
<ngx_core.h>
size_t
ngx_http_get_time
(
char
*
buf
,
time_t
t
)
{
struct
tm
*
tp
;
tp
=
gmtime
(&
t
);
return
strftime
(
buf
,
30
,
"%a, %d %b %Y %H:%M:%S GMT"
,
tp
);
}