blob: ee083efe9ad1b4315ab9efd76601f31c3dd0dd60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* ISC license. */
#include <time.h>
#include <skalibs/uint.h>
#include <skalibs/djbtime.h>
unsigned int localtm_fmt (char *s, struct tm const *l)
{
char *p = s ;
p += uint_fmt(p, 1900 + l->tm_year) ; *p++ = '-' ;
uint0_fmt(p, 1 + l->tm_mon, 2) ; p += 2 ; *p++ = '-' ;
uint0_fmt(p, l->tm_mday, 2) ; p += 2 ; *p++ = ' ' ;
uint0_fmt(p, l->tm_hour, 2) ; p += 2 ; *p++ = ':' ;
uint0_fmt(p, l->tm_min, 2) ; p += 2 ; *p++ = ':' ;
uint0_fmt(p, l->tm_sec, 2) ; p += 2 ;
return p - s ;
}
|