nginx/src/http/ngx_http_get_time.c
2003-01-30 07:28:09 +00:00

15 lines
224 B
C

#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);
}