view src/http/ngx_http_get_time.c @ 70:e320bf51c4e3

nginx-0.0.1-2003-03-25-18:40:51 import
author Igor Sysoev <igor@sysoev.ru>
date Tue, 25 Mar 2003 15:40:51 +0000
parents a499e0d1f16e
children a059e1aa65d4
line wrap: on
line source


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