URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [time/] [lcltime_r.c] - Rev 310
Go to most recent revision | Compare with Previous | Blame | View Log
/* * localtime_r.c * * Converts the calendar time pointed to by tim_p into a broken-down time * expressed as local time. Returns a pointer to a structure containing the * broken-down time. */ #include <time.h> #include "local.h" struct tm * _DEFUN (localtime_r, (tim_p, res), _CONST time_t * tim_p _AND struct tm *res) { return _mktm_r (tim_p, res, 0); }
Go to most recent revision | Compare with Previous | Blame | View Log