Sign in
nginx
/
nginx
/
239baac646073cab7bbaf537ba2d6ca844f2c992
/
.
/
src
/
http
/
ngx_http_get_time.c
blob: 45df008d183e7621ab70bf40e64a67f6f0b4c8ab [
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
);
}