mirror of
https://github.com/nginx/nginx.git
synced 2024-12-20 14:13:33 -06:00
15 lines
224 B
C
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);
|
|
}
|