OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [uclinux/] [uC-libc/] [time/] [ctime.c] - Rev 1778

Go to most recent revision | Compare with Previous | Blame | View Log

 
#include <time.h>
 
extern void __tm_conv();
extern void __asctime();
 
char *
ctime(timep)
__const 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);
 
  __asctime(cbuf, &tmb);
 
  return cbuf;
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.