URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uC-libc/] [time/] [asctime_r.c] - Rev 1770
Go to most recent revision | Compare with Previous | Blame | View Log
#include <time.h> extern void __asctime(); char * asctime_r(timeptr, buf) __const struct tm * timeptr; char * buf; { if( timeptr == 0 ) return 0; __asctime(buf, timeptr); return buf; }
Go to most recent revision | Compare with Previous | Blame | View Log