summaryrefslogtreecommitdiff
path: root/libc/time/ctime.c
blob: bc7283daced74e779859efb5086b32d142031439 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

#include <time.h>

extern void __tm_conv();
extern void __asc_conv();

char *
ctime(timep)
time_t * timep;
{
static char cbuf[26];
   struct tm tmb;
   struct timezone tz;
   time_t offt;

   gettimeofday((void*)0, &tz);

   offt = -tz.tz_minuteswest*60L;

   /* tmb.tm_isdst = ? */
   __tm_conv(&tmb, &timep, offt);

   __asc_conv(cbuf, &tmb);

   return cbuf;
}