Sign in
nginx
/
nginx
/
dc479b4d98d5b65b78689c5282a31c70efadd928
/
.
/
src
/
http
/
ngx_http_get_time.c
blob: c83a5ba2ae542ead94e287e10e428ced53f091c1 [
file
] [
log
] [
blame
]
#include
<nginx.h>
#include
<ngx_config.h>
#include
<ngx_types.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
);
}