view src/http/ngx_http_get_time.c @ 111:1c002f2b77ed

nginx-0.0.1-2003-07-03-20:30:22 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 03 Jul 2003 16:30:22 +0000
parents a059e1aa65d4
children cd54bcbaf3b5
line wrap: on
line source


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