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